thaw-grammar
Version:
Implementations of the grammars of several programming languages, including LISP, Scheme, Prolog, and the Lambda Calculus.
12 lines • 381 B
TypeScript
import { ISExpression } from './isexpression';
export declare abstract class SExpressionBareBase implements ISExpression {
isNumber(): boolean;
isSymbol(): boolean;
isList(): boolean;
isNull(): boolean;
isPrimOp(): boolean;
isClosure(): boolean;
isString(): boolean;
abstract toString(): string;
}
//# sourceMappingURL=sexpression-bare-base.d.ts.map