public LookAheadTokenParserBase(StreamReader stream, string[] tokens) { this.parser = new LookAheadParser(stream); this.tokens = new List<string>(tokens); this.preprocessor = new LookAheadCommentPreprocessor(this.parser); }
public LookAheadTokenParserBase(StreamReader stream, string[] tokens) { this.parser = new LookAheadParser(stream); this.tokens = new List <string>(tokens); this.preprocessor = new LookAheadCommentPreprocessor(this.parser); }