internal static void BindAst(PythonAst ast, ErrorSink context) { PythonNameBinder binder = new PythonNameBinder(ast, context); binder.Bind(ast); }
internal static void BindAst(PythonLanguageVersion langVersion, PythonAst ast, ErrorSink context, bool bindReferences) { PythonNameBinder binder = new PythonNameBinder(langVersion, ast, context, bindReferences); binder.Bind(ast); }