thaw-grammar
Version:
Implementations of the grammars of several programming languages, including LISP, Scheme, Prolog, and the Lambda Calculus.
11 lines • 395 B
TypeScript
import { PrologClause } from './prolog-clause';
import { StringIntKey } from './string-int-key';
export declare class PrologModule {
readonly ExportList: StringIntKey[];
ImportList: Map<string, PrologModule>;
ClauseList: PrologClause[];
constructor(exportList?: StringIntKey[] | undefined);
toString(): string;
clear(): void;
}
//# sourceMappingURL=prolog-module.d.ts.map