We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
def myfunc(arg): y = 1 x = 2
findLocalScopes(node, null) returns always [arg, y, x] for a node inside myfunc(arg)
findLocalScopes(node, null)
[arg, y, x]
myfunc(arg)
See SLLanguage.findLocalScopes() how it should be done collecting only the local variables already defined.