Esempio n. 1
0
 public ToParser(IRCParserContext context)
 {
     _context = context;
 }
Esempio n. 2
0
 private IRCQueryParser()
 {
     Context = new IRCParserContext();
     Context.CurrentState = new PrefixParser(Context);
 }
Esempio n. 3
0
 public CommandParser(IRCParserContext context)
 {
     _context = context;
     _line = _context.Line;
 }
Esempio n. 4
0
 public FromParser(IRCParserContext context)
 {
     _line = context.Line;
     _context = context;
 }
Esempio n. 5
0
 public PrefixParser(IRCParserContext context)
 {
     _context = context;
 }
Esempio n. 6
0
 public ParamsParser(IRCParserContext _context)
 {
     this._context = _context;
     this._line = _context.Line;
 }