(parser, root)
| 1449 | } |
| 1450 | } |
| 1451 | parseIndirectStatement(parser, root) { |
| 1452 | if (parser.matchToken("unless")) { |
| 1453 | root.endToken = parser.lastMatch(); |
| 1454 | var conditional = parser.requireElement("expression"); |
| 1455 | var unless = new UnlessStatementModifier(root, conditional); |
| 1456 | root.parent = unless; |
| 1457 | return unless; |
| 1458 | } |
| 1459 | return root; |
| 1460 | } |
| 1461 | parsePrimaryExpression(parser) { |
| 1462 | var leaf = parser.parseElement("leaf"); |
| 1463 | if (leaf) { |
nothing calls this directly
no test coverage detected