コード例 #1
0
 public AsignmentInstruction(string variableName, ValueInstruction value)
 {
     this.variableName = variableName;
     this.value        = value;
 }
コード例 #2
0
 public LoopInstruction(string valueVariableName, string indexVariableName, ValueInstruction listValue)
 {
     this.valueVariableName = valueVariableName;
     this.indexVariableName = indexVariableName;
     this.listValue         = listValue;
 }
コード例 #3
0
 public PropertyInstruction(string identifier, ValueInstruction value)
 {
     this.identifier = identifier;
     this.value      = value;
 }