Param ::= '<jsp:param' S Attributes S? EmptyBody S?
(Node parent)
| 768 | * Param ::= '<jsp:param' S Attributes S? EmptyBody S? |
| 769 | */ |
| 770 | private void parseParam(Node parent) throws JasperException { |
| 771 | if (!reader.matches("<jsp:param")) { |
| 772 | err.jspError(reader.mark(), "jsp.error.paramexpected"); |
| 773 | } |
| 774 | Attributes attrs = parseAttributes(); |
| 775 | reader.skipSpaces(); |
| 776 | |
| 777 | Node paramActionNode = new Node.ParamAction(attrs, start, parent); |
| 778 | |
| 779 | parseEmptyBody(paramActionNode, "jsp:param"); |
| 780 | |
| 781 | reader.skipSpaces(); |
| 782 | } |
| 783 | |
| 784 | /* |
| 785 | * For Include: StdActionContent ::= Attributes ParamBody |
no test coverage detected