示例#1
0
 /**
  * Parses a quercus program.
  *
  * @param path the source file path
  * @return the parsed program
  * @throws IOException
  */
 public QuercusPage parse(Path path, String fileName, int line) throws IOException {
   return _pageManager.parse(path, fileName, line);
 }
示例#2
0
 /**
  * Parses a quercus program.
  *
  * @param path the source file path
  * @return the parsed program
  * @throws IOException
  */
 public QuercusPage parse(Path path) throws IOException {
   return _pageManager.parse(path);
 }