UNPKG

@mojir/lits

Version:

Lits is a pure functional programming language implemented in TypeScript

5 lines (4 loc) 303 B
import type { LambdaNode } from '../../builtin/specialExpressions/functions'; import type { ParserContext } from '../ParserContext'; export declare function parseLambdaFunction(ctx: ParserContext): LambdaNode | null; export declare function parseShorthandLambdaFunction(ctx: ParserContext): LambdaNode;