(Node parent)
| 560 | * Parses an attribute directive with the following syntax: AttributeDirective ::= ( S Attribute)* |
| 561 | */ |
| 562 | private void parseAttributeDirective(Node parent) throws JasperException { |
| 563 | Attributes attrs = parseAttributes(); |
| 564 | @SuppressWarnings("unused") |
| 565 | Node unused = new Node.AttributeDirective(attrs, start, parent); |
| 566 | } |
| 567 | |
| 568 | /* |
| 569 | * Parses a variable directive with the following syntax: PageDirective ::= ( S Attribute)* |
no test coverage detected