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

Method getStart

java/org/apache/jasper/compiler/Node.java:976–983  ·  view source on GitHub ↗

For the same reason as above, the source line information in the contained TemplateText node should be used.

()

Source from the content-addressed store, hash-verified

974 * For the same reason as above, the source line information in the contained TemplateText node should be used.
975 */
976 @Override
977 public Mark getStart() {
978 if (text == null && body != null && body.size() > 0) {
979 return body.getNode(0).getStart();
980 } else {
981 return super.getStart();
982 }
983 }
984 }
985
986 /**

Callers

nothing calls this directly

Calls 3

sizeMethod · 0.45
getStartMethod · 0.45
getNodeMethod · 0.45

Tested by

no test coverage detected