Compile() private method

private Compile ( Compiler compiler ) : void
compiler Compiler
return void
Ejemplo n.º 1
0
        public override ChooseAction CreateChooseAction()
        {//!!! don't need to be here
            ChooseAction action = new ChooseAction();

            action.Compile(this);
            return(action);
        }
Ejemplo n.º 2
0
        public virtual ChooseAction CreateChooseAction()  //!!! don't need to be here
        {
            ChooseAction action = new ChooseAction();

            action.Compile(this);
            return(action);
        }
Ejemplo n.º 3
0
 public virtual ChooseAction CreateChooseAction()
 {//!!! don't need to be here
     ChooseAction action = new ChooseAction();
     action.Compile(this);
     return action;
 }