Boo.Lang.Compiler.LexicalInfoPreservingMacro.Expand C# (CSharp) Метод

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

public Expand ( MacroStatement macro ) : Statement
macro Boo.Lang.Compiler.Ast.MacroStatement
Результат Boo.Lang.Compiler.Ast.Statement
        public override Statement Expand(MacroStatement macro)
        {
            Statement code = ExpandImpl(macro);
            if (code != null) code.LexicalInfo = macro.LexicalInfo;
            return code;
        }
LexicalInfoPreservingMacro