(Node parent)
| 714 | * ScriptletBody ::= (Char* - (char* '%>')) '%>' |
| 715 | */ |
| 716 | private void parseScriptlet(Node parent) throws JasperException { |
| 717 | start = reader.mark(); |
| 718 | Mark stop = reader.skipUntil("%>"); |
| 719 | if (stop == null) { |
| 720 | err.jspError(start, "jsp.error.unterminated", "<%"); |
| 721 | } |
| 722 | |
| 723 | @SuppressWarnings("unused") |
| 724 | Node unused = new Node.Scriptlet(parseScriptText(reader.getText(start, stop)), start, parent); |
| 725 | } |
| 726 | |
| 727 | /* |
| 728 | * XMLScriptletBody ::= ( S? '/>' ) | ( S? '>' (Char* - (char* '<')) CDSect?)* ETag ) | <TRANSLATION_ERROR> |
no test coverage detected