(Node parent)
| 804 | * For Forward: StdActionContent ::= Attributes ParamBody |
| 805 | */ |
| 806 | private void parseForward(Node parent) throws JasperException { |
| 807 | Attributes attrs = parseAttributes(); |
| 808 | reader.skipSpaces(); |
| 809 | |
| 810 | Node forwardNode = new Node.ForwardAction(attrs, start, parent); |
| 811 | |
| 812 | parseOptionalBody(forwardNode, "jsp:forward", JAVAX_BODY_CONTENT_PARAM); |
| 813 | } |
| 814 | |
| 815 | private void parseInvoke(Node parent) throws JasperException { |
| 816 | Attributes attrs = parseAttributes(); |
no test coverage detected