Beispiel #1
0
 public Lexer(InputSource file)
 {
     InputSource = file;
     Text        = file.Text;
     StartParse();
 }
Beispiel #2
0
 public TokenStream(InputSource source)
 {
     InputSource = source;
     Child       = null;
     Lexer       = new Lexer(source);
 }