Exemplo n.º 1
0
 public BuiltInUnaryOperator(string name, CheezType resType, CheezType sub, ComptimeExecution exe = null)
 {
     Name           = name;
     ResultType     = resType;
     SubExprType    = sub;
     this.Execution = exe;
 }
Exemplo n.º 2
0
 public BuiltInBinaryOperator(string name, CheezType resType, CheezType lhs, CheezType rhs, ComptimeExecution exe = null)
 {
     Name       = name;
     ResultType = resType;
     LhsType    = lhs;
     RhsType    = rhs;
     Execution  = exe;
 }