UNPKG

thaw-grammar

Version:

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

10 lines 562 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'; export declare class IntegerLiteral implements IExpression<number> { readonly value: number; constructor(value: unknown); toString(): string; evaluate(globalInfo: IGlobalInfo<number>, localEnvironment?: IEnvironmentFrame<number>, options?: unknown): number; } //# sourceMappingURL=number.d.ts.map