示例#1
0
 public TerminalCode(TerminalCodeType type, CharAttributes charAttributes) : this(type)
 {
     CharAttributes = charAttributes;
 }
示例#2
0
 public TerminalCode(TerminalCodeType type, int line, int column) : this(type)
 {
     Line   = line;
     Column = column;
 }
示例#3
0
 public TerminalCode(TerminalCodeType type) : this()
 {
     Type = type;
 }
示例#4
0
 public TerminalCode(TerminalCodeType type, string text) : this(type)
 {
     Text = text;
 }
示例#5
0
 private void Emit(TerminalCodeType type)
 {
     Emit(new TerminalCode(type));
 }