UNPKG

js-slang

Version:

Javascript-based implementations of Source, written in Typescript

8 lines (7 loc) 160 B
import { Expression } from "../types/nodes/scheme-node-types"; /** * Interface for the Parser class */ export interface Parser { parse(): Expression[]; }