Boo.Lang.Compiler.CompilerContext.Run C# (CSharp) Метод

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

Runs the given action with this context ensuring CompilerContext.Current returns the right context.
public Run ( System action ) : void
action System
Результат void
        public void Run(System.Action<CompilerContext> action)
        {
            CurrentVariable().With(this, action);
        }

Usage Example

Пример #1
0
        public CompilerContext Run()
        {
            CompilerContext context = new CompilerContext(_parameters, new CompileUnit());

            context.Run();
            return(context);
        }
All Usage Examples Of Boo.Lang.Compiler.CompilerContext::Run