Inheritance: ISourceStream
Exemplo n.º 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);
 }
Exemplo n.º 2
0
 protected override void PrepareInput()
 {
     SourceStream = new SourceStream(this.Data, Context.TabWidth);
 }
Exemplo n.º 3
0
 protected override void PrepareInput()
 {
     SourceStream = new SourceStream(this.Data, Context.TabWidth);
 }