UNPKG

thaw-grammar

Version:

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

7 lines 365 B
import { IParser, ITokenizer, LanguageSelector } from 'thaw-interpreter-types'; import { IGlobalInfoForInterpreter } from './domain-object-model/iglobal-info'; export declare function createGlobalInfo(ls: LanguageSelector, options?: { parser?: IParser; tokenizer?: ITokenizer; }): IGlobalInfoForInterpreter; //# sourceMappingURL=global-info-factory.d.ts.map