thaw-grammar
Version:
Implementations of the grammars of several programming languages, including LISP, Scheme, Prolog, and the Lambda Calculus.
11 lines • 474 B
TypeScript
import { IParser, ITokenizer } from 'thaw-interpreter-types';
import { ISExpression } from '../../lisp/domain-object-model/isexpression';
import { SchemeGlobalInfo } from '../../scheme/domain-object-model/scheme-global-info';
export declare class SASLGlobalInfo extends SchemeGlobalInfo {
constructor(options?: {
parser?: IParser;
tokenizer?: ITokenizer;
});
dethunk(sexpr: ISExpression): ISExpression;
}
//# sourceMappingURL=global-info.d.ts.map