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