UNPKG

@mojir/lits

Version:

Lits is a pure functional programming language implemented in TypeScript

5 lines (4 loc) 273 B
import type { MatchNode } from '../../builtin/specialExpressions/match'; import { type SymbolToken } from '../../tokenizer/token'; import type { ParserContext } from '../ParserContext'; export declare function parseMatch(ctx: ParserContext, token: SymbolToken): MatchNode;