示例#1
0
 public Parser(string filePath)
     : this(Scanner.FromFile(filePath))
 {
 }
示例#2
0
 public Parser(string srcFile)
     : this(Scanner.FromFile(srcFile))
 {
     this.srcFile = srcFile;
 }
示例#3
0
 public Parser(ILogger logger, string filePath)
     : this(logger, Scanner.FromFile(filePath))
 {
 }