Ejemplo n.º 1
0
 public InstructionItem(string command, string type, object value, SourceLocation loc) {
     Command = command; Type = type; Value = value;
     Location = loc;
 }
Ejemplo n.º 2
0
 public InstructionItem(string command, SourceLocation loc) : this(command, null, null, loc) { }