Ejemplo n.º 1
0
        internal static void BindAst(PythonAst ast, ErrorSink context)
        {
            PythonNameBinder binder = new PythonNameBinder(ast, context);

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

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