(Node parent)
| 831 | } |
| 832 | |
| 833 | private void parseElement(Node parent) throws JasperException { |
| 834 | Attributes attrs = parseAttributes(); |
| 835 | reader.skipSpaces(); |
| 836 | |
| 837 | Node elementNode = new Node.JspElement(attrs, start, parent); |
| 838 | |
| 839 | parseOptionalBody(elementNode, "jsp:element", TagInfo.BODY_CONTENT_JSP); |
| 840 | } |
| 841 | |
| 842 | /* |
| 843 | * For GetProperty: StdActionContent ::= Attributes EmptyBody |
no test coverage detected