(Node parent, char type)
| 700 | * ELExpressionBody. Starts with "#{" or "${". Ends with "}". See JspReader.skipELExpression(). |
| 701 | */ |
| 702 | private void parseELExpression(Node parent, char type) throws JasperException { |
| 703 | start = reader.mark(); |
| 704 | Mark last = reader.skipELExpression(); |
| 705 | if (last == null) { |
| 706 | err.jspError(start, "jsp.error.unterminated", type + "{"); |
| 707 | } |
| 708 | |
| 709 | @SuppressWarnings("unused") |
| 710 | Node unused = new Node.ELExpression(type, reader.getText(start, last), start, parent); |
| 711 | } |
| 712 | |
| 713 | /* |
| 714 | * ScriptletBody ::= (Char* - (char* '%>')) '%>' |
no test coverage detected