MCPcopy Index your code
hub / github.com/apache/tomcat / Parser

Method Parser

java/org/apache/jasper/compiler/Parser.java:71–82  ·  view source on GitHub ↗

The constructor

(ParserController pc, JspReader reader, boolean isTagFile, boolean directivesOnly, Jar jar)

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls 5

getPageInfoMethod · 0.80
getErrorDispatcherMethod · 0.80
getCompilerMethod · 0.65
markMethod · 0.45

Tested by

no test coverage detected