public Int32 this[ScriptResultId id]
 {
     get => _executionResults[id.ResultId];
Example #2
0
 public Int32 this[ScriptResultId id]
 {
     get => throw new NotSupportedException();
Example #3
0
 public POPI_L(ScriptResultId index, IJsmExpression value)
 {
     _index = index;
     _value = value;
 }
 /// <summary>
 /// Push the value (Int32) at index position in the Temp List onto the stack.
 /// </summary>
 /// <param name="index">Index position in the Temp List (0...7).</param>
 public PSHI_L(ScriptResultId index)
 {
     _index = index;
 }