Exemplo n.º 1
0
 public ScriptOp(ScriptOpType opType)
     : this()
 {
     OpType = opType;
 }
Exemplo n.º 2
0
 /// <summary>
 /// Initializes and instance of the Metadata Class with the given info
 /// </summary>
 public ScriptOpMetadata(ScriptOpCode opCode, ScriptOpType opType, ScriptOperandType operandType)
 {
     OpCode      = opCode;
     OpType      = opType;
     OperandType = operandType;
 }
Exemplo n.º 3
0
 public ScriptOp(ScriptOpType opType, string name)
     : this(opType)
 {
     Name = name;
 }