Esempio n. 1
0
 private ScriptExpression(DatumIndex index, ushort opcode, ushort valType, ScriptExpressionType expType,
                          uint strOffset, short line)
 {
     Index        = index;
     Opcode       = opcode;
     ReturnType   = valType;
     Type         = expType;
     Next         = DatumIndex.Null;
     StringOffset = strOffset;
     LineNumber   = line;
 }
Esempio n. 2
0
 // Tag
 public ScriptExpression(DatumIndex index, ushort opcode, ushort valType, ScriptExpressionType expType,
                         uint strOffset, short line, ITag value) : this(index, opcode, valType, expType, strOffset, line)
 {
     Value = new LongExpressionValue(value);
 }