(Node parent)
| 891 | * For UseBean: StdActionContent ::= Attributes OptionalBody |
| 892 | */ |
| 893 | private void parseUseBean(Node parent) throws JasperException { |
| 894 | Attributes attrs = parseAttributes(); |
| 895 | reader.skipSpaces(); |
| 896 | |
| 897 | Node useBeanNode = new Node.UseBean(attrs, start, parent); |
| 898 | |
| 899 | parseOptionalBody(useBeanNode, "jsp:useBean", TagInfo.BODY_CONTENT_JSP); |
| 900 | } |
| 901 | |
| 902 | /* |
| 903 | * Parses OptionalBody, but also reused to parse bodies for param since the syntax is identical (the only thing that |
no test coverage detected