UNPKG

thaw-grammar

Version:

Implementations of the grammars of several programming languages, including LISP, Scheme, Prolog, and the Lambda Calculus.

11 lines 272 B
export interface ISExpression { isNumber(): boolean; isSymbol(): boolean; isList(): boolean; isNull(): boolean; isPrimOp(): boolean; isClosure(): boolean; isString(): boolean; toString(): string; } //# sourceMappingURL=isexpression.d.ts.map