(Node parent)
| 792 | * JspBodyParam ::= S? '>' Param* '</jsp:body>' |
| 793 | */ |
| 794 | private void parseInclude(Node parent) throws JasperException { |
| 795 | Attributes attrs = parseAttributes(); |
| 796 | reader.skipSpaces(); |
| 797 | |
| 798 | Node includeNode = new Node.IncludeAction(attrs, start, parent); |
| 799 | |
| 800 | parseOptionalBody(includeNode, "jsp:include", JAVAX_BODY_CONTENT_PARAM); |
| 801 | } |
| 802 | |
| 803 | /* |
| 804 | * For Forward: StdActionContent ::= Attributes ParamBody |
no test coverage detected