You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Since performance has not been a priority in the compiler's development, the compiler currently clones all over the place. Strings that reference another data type from the module that is compiled are particularly prone to being cloned. These could be easily replaced with Cows or similar borrowing types. Similarly, the map of TopLevelDeclarations is cloned in some places in the validator module.
The text was updated successfully, but these errors were encountered:
Since performance has not been a priority in the compiler's development, the compiler currently
clone
s all over the place. Strings that reference another data type from the module that is compiled are particularly prone to being cloned. These could be easily replaced withCow
s or similar borrowing types. Similarly, the map ofTopLevelDeclarations
is cloned in some places in thevalidator
module.The text was updated successfully, but these errors were encountered: