()
| 59 | } |
| 60 | |
| 61 | parseValueConverter() { |
| 62 | let result = this.parseExpression(); |
| 63 | while (this.opt(T$Bar)) { |
| 64 | result = new ValueConverter(result, this.val, this.parseVariadicArgs()); |
| 65 | } |
| 66 | return result; |
| 67 | } |
| 68 | |
| 69 | parseVariadicArgs() { |
| 70 | this.nextToken(); |
no test coverage detected