Compile() private method

private Compile ( Compiler compiler ) : void
compiler Compiler
return void
コード例 #1
0
ファイル: DbgCompiler.cs プロジェクト: z77ma/runtime
        public override ChooseAction CreateChooseAction()
        {//!!! don't need to be here
            ChooseAction action = new ChooseAction();

            action.Compile(this);
            return(action);
        }
コード例 #2
0
        public virtual ChooseAction CreateChooseAction()  //!!! don't need to be here
        {
            ChooseAction action = new ChooseAction();

            action.Compile(this);
            return(action);
        }
コード例 #3
0
ファイル: Compiler.cs プロジェクト: geoffkizer/corefx
 public virtual ChooseAction CreateChooseAction()
 {//!!! don't need to be here
     ChooseAction action = new ChooseAction();
     action.Compile(this);
     return action;
 }