IronPython.Compiler.LookupGlobalInstruction.LookupGlobalInstruction C# (CSharp) Метод

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

public LookupGlobalInstruction ( string name, bool isLocal, bool lightThrow ) : System.Linq.Expressions
name string
isLocal bool
lightThrow bool
Результат System.Linq.Expressions
        public LookupGlobalInstruction(string name, bool isLocal, bool lightThrow) {
            _name = name;
            _isLocal = isLocal;
            _lightThrow = lightThrow;
        }
        public override int ConsumedStack { get { return 1; } }