Compile() private méthode

private Compile ( Compiler compiler ) : void
compiler Compiler
Résultat void
Exemple #1
0
        public virtual IfAction CreateIfAction(IfAction.ConditionType type)
        {
            IfAction action = new IfAction(type);

            action.Compile(this);
            return(action);
        }
Exemple #2
0
 public virtual IfAction CreateIfAction(IfAction.ConditionType type)
 {
     IfAction action = new IfAction(type);
     action.Compile(this);
     return action;
 }