Inheritance: ISourceStream
Exemple #1
0
 //Utilities
 public void TryMatch(string input) {
   SourceStream source = new SourceStream(_language.ScannerData, 0);
   source.SetText(input, 0, false);
   _token = _terminal.TryMatch(_context, source);
 }
Exemple #2
0
 protected override void PrepareInput()
 {
     SourceStream = new SourceStream(this.Data, Context.TabWidth);
 }
Exemple #3
0
 protected override void PrepareInput()
 {
     SourceStream = new SourceStream(this.Data, Context.TabWidth);
 }