(Node parent)
| 592 | * DeclarationBody ::= (Char* - (char* '%>')) '%>' |
| 593 | */ |
| 594 | private void parseDeclaration(Node parent) throws JasperException { |
| 595 | start = reader.mark(); |
| 596 | Mark stop = reader.skipUntil("%>"); |
| 597 | if (stop == null) { |
| 598 | err.jspError(start, "jsp.error.unterminated", "<%!"); |
| 599 | } |
| 600 | |
| 601 | @SuppressWarnings("unused") |
| 602 | Node unused = new Node.Declaration(parseScriptText(reader.getText(start, stop)), start, parent); |
| 603 | } |
| 604 | |
| 605 | /* |
| 606 | * XMLDeclarationBody ::= ( S? '/>' ) | ( S? '>' (Char* - (char* '<')) CDSect?)* ETag | <TRANSLATION_ERROR> CDSect |
no test coverage detected