コード例 #1
0
 public Statement(StatementType type, string label, List<string> arguments, int length)
 {
     _type = type;
     _label = label;
     _arguments = arguments;
     _length = length;
     Location = 0;
 }
コード例 #2
0
 public Instruction(StatementType type, string label, List<string> arguments, int length)
     : base(type, label, arguments, length)
 {
 }
コード例 #3
0
 public Directive(StatementType type, string label, List<string> arguments, int length)
     : base(type, label, arguments, length)
 {
 }