예제 #1
0
 public InstructionItem(string command, string type, object value, SourceLocation loc) {
     Command = command; Type = type; Value = value;
     Location = loc;
 }
예제 #2
0
 public InstructionItem(string command, SourceLocation loc) : this(command, null, null, loc) { }