UNPKG

@mojir/lits

Version:

Lits is a Lisp dialect implemented in TypeScript

6 lines (5 loc) 303 B
import type { Any } from '../interface'; import type { Ast, Node } from '../parser/types'; import type { ContextStack } from './ContextStack'; export declare function evaluate(ast: Ast, contextStack: ContextStack): Any; export declare function evaluateNode(node: Node, contextStack: ContextStack): Any;