UNPKG

thaw-grammar

Version:

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

16 lines 822 B
import { SmalltalkInteger } from './data-types/integer'; import { SmalltalkUserValue } from './data-types/user-value'; import { SmalltalkClass } from './class'; import { SmalltalkVariable } from './variable'; export declare const defaultValue: SmalltalkInteger; export declare const objectInstance: SmalltalkUserValue; export declare const falseValue: SmalltalkInteger; export declare const trueValue: SmalltalkInteger; export declare const nilVar: SmalltalkVariable; export declare const nilClass: SmalltalkClass; export declare const falseClass: SmalltalkClass; export declare const trueClass: SmalltalkClass; export declare const nilInstance: SmalltalkUserValue; export declare const falseInstance: SmalltalkUserValue; export declare const trueInstance: SmalltalkUserValue; //# sourceMappingURL=object-instance.d.ts.map