(input: string)
| 54 | }); |
| 55 | |
| 56 | const parse = (input: string): AstNode => { |
| 57 | const lexer = new FormulaExprLexer(input); |
| 58 | const parser = new FormulaExprParser(lexer, mockContext(input)); |
| 59 | return parser.parse(); |
| 60 | }; |
| 61 | |
| 62 | describe('function call', () => { |
| 63 | test('nullary function', () => { |
no test coverage detected