(Node parent)
| 822 | } |
| 823 | |
| 824 | private void parseDoBody(Node parent) throws JasperException { |
| 825 | Attributes attrs = parseAttributes(); |
| 826 | reader.skipSpaces(); |
| 827 | |
| 828 | Node doBodyNode = new Node.DoBodyAction(attrs, start, parent); |
| 829 | |
| 830 | parseEmptyBody(doBodyNode, "jsp:doBody"); |
| 831 | } |
| 832 | |
| 833 | private void parseElement(Node parent) throws JasperException { |
| 834 | Attributes attrs = parseAttributes(); |
no test coverage detected