(Node parent)
| 569 | * Parses a variable directive with the following syntax: PageDirective ::= ( S Attribute)* |
| 570 | */ |
| 571 | private void parseVariableDirective(Node parent) throws JasperException { |
| 572 | Attributes attrs = parseAttributes(); |
| 573 | @SuppressWarnings("unused") |
| 574 | Node unused = new Node.VariableDirective(attrs, start, parent); |
| 575 | } |
| 576 | |
| 577 | /* |
| 578 | * JSPCommentBody ::= (Char* - (Char* '--%>')) '--%>' |
no test coverage detected