(Node parent)
| 578 | * JSPCommentBody ::= (Char* - (Char* '--%>')) '--%>' |
| 579 | */ |
| 580 | private void parseComment(Node parent) throws JasperException { |
| 581 | start = reader.mark(); |
| 582 | Mark stop = reader.skipUntil("--%>"); |
| 583 | if (stop == null) { |
| 584 | err.jspError(start, "jsp.error.unterminated", "<%--"); |
| 585 | } |
| 586 | |
| 587 | @SuppressWarnings("unused") |
| 588 | Node unused = new Node.Comment(reader.getText(start, stop), start, parent); |
| 589 | } |
| 590 | |
| 591 | /* |
| 592 | * DeclarationBody ::= (Char* - (char* '%>')) '%>' |
no test coverage detected