UNPKG

thaw-grammar

Version:

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

11 lines 695 B
import { IEnvironmentFrame } from '../../../common/domain-object-model/environment-frame'; import { IExpression } from '../../../common/domain-object-model/iexpression'; import { IGlobalInfo } from '../../../common/domain-object-model/iglobal-info'; import { ISExpression } from './isexpression'; export declare class QuotedConstantWithApostrophe implements IExpression<ISExpression> { readonly sexpression: ISExpression; constructor(sexpression: ISExpression); toString(): string; evaluate(globalInfo: IGlobalInfo<ISExpression>, localEnvironment?: IEnvironmentFrame<ISExpression>, options?: unknown): ISExpression; } //# sourceMappingURL=quoted-constant-with-apostrophe.d.ts.map