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