コード例 #1
0
ファイル: Lexer.cs プロジェクト: tgjones/weaver
 public Lexer(string path, string text)
 {
     _path = path;
     _buffer = new TextBuffer(text);
     _value = new StringBuilder();
 }
コード例 #2
0
ファイル: Lexer.cs プロジェクト: erdemyavuzyildiz/weaver
 public Lexer(string path, string text)
 {
     _path   = path;
     _buffer = new TextBuffer(text);
     _value  = new StringBuilder();
 }