The constructor
(ParserController pc, JspReader reader, boolean isTagFile, boolean directivesOnly, Jar jar)
| 69 | * The constructor |
| 70 | */ |
| 71 | private Parser(ParserController pc, JspReader reader, boolean isTagFile, boolean directivesOnly, Jar jar) { |
| 72 | this.parserController = pc; |
| 73 | this.ctxt = pc.getJspCompilationContext(); |
| 74 | this.pageInfo = pc.getCompiler().getPageInfo(); |
| 75 | this.err = pc.getCompiler().getErrorDispatcher(); |
| 76 | this.reader = reader; |
| 77 | this.scriptlessCount = 0; |
| 78 | this.isTagFile = isTagFile; |
| 79 | this.directivesOnly = directivesOnly; |
| 80 | this.jar = jar; |
| 81 | start = reader.mark(); |
| 82 | } |
| 83 | |
| 84 | /** |
| 85 | * The main entry for Parser |
nothing calls this directly
no test coverage detected