Boo.Lang.Compiler.Steps.GeneratorMethodProcessor.GeneratorMethodProcessor C# (CSharp) Метод

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

public GeneratorMethodProcessor ( CompilerContext context, Boo.Lang.Compiler.TypeSystem.InternalMethod method ) : System.Collections
context Boo.Lang.Compiler.CompilerContext
method Boo.Lang.Compiler.TypeSystem.InternalMethod
Результат System.Collections
        public GeneratorMethodProcessor(CompilerContext context, InternalMethod method)
        {
            _labels = new List();
            _mapping = new Hashtable();
            _generator = method;
            _generatorItemType = (IType)_generator.Method["GeneratorItemType"];
            _enumerable = (BooClassBuilder)_generator.Method["GeneratorClassBuilder"];
            Debug.Assert(null != _generatorItemType);
            Debug.Assert(null != _enumerable);
            Initialize(context);
        }