Compile() private method

private Compile ( Compiler compiler ) : void
compiler Compiler
return void
コード例 #1
0
ファイル: Compiler.cs プロジェクト: lateralusX/runtime
        public virtual ElementAction CreateElementAction()
        {
            ElementAction action = new ElementAction();

            action.Compile(this);
            return(action);
        }
コード例 #2
0
ファイル: Compiler.cs プロジェクト: geoffkizer/corefx
 public virtual ElementAction CreateElementAction()
 {
     ElementAction action = new ElementAction();
     action.Compile(this);
     return action;
 }