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

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

public LeaveMethod ( Method method ) : void
method Boo.Lang.Compiler.Ast.Method
Результат void
        public override void LeaveMethod(Method method)
        {
            InternalMethod entity = (InternalMethod)method.Entity;
            if (!entity.IsGenerator) return;

            GeneratorMethodProcessor processor = new GeneratorMethodProcessor(_context, entity);
            processor.Run();
        }