UNPKG

@mojir/lits

Version:

Lits is a pure functional programming language implemented in TypeScript

5 lines (4 loc) 274 B
import type { LoopNode } from '../../builtin/specialExpressions/loop'; import type { SymbolToken } from '../../tokenizer/token'; import type { ParserContext } from '../ParserContext'; export declare function parseLoop(ctx: ParserContext, firstToken: SymbolToken): LoopNode;