(parser, root)
| 154 | } |
| 155 | |
| 156 | parseIndirectStatement(parser, root) { |
| 157 | if (parser.matchToken("unless")) { |
| 158 | root.endToken = parser.lastMatch(); |
| 159 | var conditional = parser.requireElement("expression"); |
| 160 | var unless = new UnlessStatementModifier(root, conditional); |
| 161 | root.parent = unless; |
| 162 | return unless; |
| 163 | } |
| 164 | return root; |
| 165 | } |
| 166 | |
| 167 | parsePrimaryExpression(parser) { |
| 168 | var leaf = parser.parseElement("leaf"); |
nothing calls this directly
no test coverage detected