IronPython.Compiler.Ast.PythonNameBinder.PostWalk C# (CSharp) Метод

PostWalk() публичный Метод

public PostWalk ( IronPython.Compiler.Ast.CallExpression node ) : void
node IronPython.Compiler.Ast.CallExpression
Результат void
        public override void PostWalk(CallExpression node) {
            if (node.NeedsLocalsDictionary()) {
                _currentScope.NeedsLocalsDictionary = true;
            }
        }

Same methods

PythonNameBinder::PostWalk ( ClassDefinition node ) : void
PythonNameBinder::PostWalk ( ConditionalExpression node ) : void
PythonNameBinder::PostWalk ( DictionaryComprehension node ) : void
PythonNameBinder::PostWalk ( ExecStatement node ) : void
PythonNameBinder::PostWalk ( FunctionDefinition node ) : void
PythonNameBinder::PostWalk ( IronPython.Compiler.Ast.PythonAst node ) : void
PythonNameBinder::PostWalk ( SetComprehension node ) : void