(parser, root)
| 1458 | } |
| 1459 | } |
| 1460 | parseIndirectStatement(parser, root) { |
| 1461 | if (parser.matchToken("unless")) { |
| 1462 | root.endToken = parser.lastMatch(); |
| 1463 | var conditional = parser.requireElement("expression"); |
| 1464 | var unless = new UnlessStatementModifier(root, conditional); |
| 1465 | root.parent = unless; |
| 1466 | return unless; |
| 1467 | } |
| 1468 | return root; |
| 1469 | } |
| 1470 | parsePrimaryExpression(parser) { |
| 1471 | var leaf = parser.parseElement("leaf"); |
| 1472 | if (leaf) { |
nothing calls this directly
no test coverage detected