public ScriptOp(ScriptOpType opType) : this() { OpType = opType; }
/// <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; }
public ScriptOp(ScriptOpType opType, string name) : this(opType) { Name = name; }