(parser)
| 114 | } |
| 115 | |
| 116 | parsePostfixExpression(parser) { |
| 117 | var root = parser.parseElement("negativeNumber"); |
| 118 | for (var i = 0; i < this.#postfixExpressions.length; i++) { |
| 119 | var postfixType = this.#postfixExpressions[i]; |
| 120 | var result = this.parseElement(postfixType, parser, root); |
| 121 | if (result) { |
| 122 | return result; |
| 123 | } |
| 124 | } |
| 125 | return root; |
| 126 | } |
| 127 | |
| 128 | parseUnaryExpression(parser) { |
| 129 | parser.matchToken("the"); // optional "the" |
nothing calls this directly
no test coverage detected