Exemplo n.º 1
0
 public LookAheadTokenParserBase(StreamReader stream, string[] tokens)
 {
     this.parser       = new LookAheadParser(stream);
     this.tokens       = new List <string>(tokens);
     this.preprocessor = new LookAheadCommentPreprocessor(this.parser);
 }
Exemplo n.º 2
0
 public LookAheadTokenParserBase(StreamReader stream, string[] tokens)
 {
     this.parser = new LookAheadParser(stream);
       this.tokens = new List<string>(tokens);
       this.preprocessor = new LookAheadCommentPreprocessor(this.parser);
 }
Exemplo n.º 3
0
 protected LookAheadParser(LookAheadParser other, ParserCloneArgs args)
     : base(other, args)
 {
 }