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
When we're in a method (i.e., inside the scope of a RecordDeclaration), the PythonAddDeclarationsPass will always add a FieldDeclaration instead of a local VariableDeclaration, even if we do not see the receiver.
When we're in a method (i.e., inside the scope of a
RecordDeclaration
), thePythonAddDeclarationsPass
will always add aFieldDeclaration
instead of a localVariableDeclaration
, even if we do not see the receiver.Example:
This will generate two
FieldDeclarations
: one forx
and one forb
even if IMHO it's more likely thatb
is a local variableThe text was updated successfully, but these errors were encountered: