MCPcopy Index your code
hub / github.com/apitable/apitable / parse

Function parse

packages/core/src/formula_parser/__tests__/parser.test.ts:56–60  ·  view source on GitHub ↗
(input: string)

Source from the content-addressed store, hash-verified

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

Callers 1

parser.test.tsFile · 0.70

Calls 2

parseMethod · 0.95
mockContextFunction · 0.85

Tested by

no test coverage detected