()
| 94 | } |
| 95 | |
| 96 | _term() { |
| 97 | const factorNode = this._factor(); |
| 98 | const termsNode = this._moreTerms(); |
| 99 | |
| 100 | //TODO Do not create an 'empty' node where this is multiplied by 1 |
| 101 | return ASTNode.createNode('op_*', factorNode, termsNode); |
| 102 | } |
| 103 | |
| 104 | _moreTerms() { |
| 105 | let factorNode; |
no test coverage detected