예제 #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))
 {
 }