UNPKG

thaw-grammar

Version:

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

8 lines 413 B
import { ExceptionBase } from 'thaw-interpreter-core'; import { ISExpression } from '../../lisp/domain-object-model/isexpression'; export declare class ContinuationException extends ExceptionBase { readonly ccGuid: number; readonly returnValue: ISExpression; constructor(ccGuid: number, returnValue: ISExpression, line?: number, column?: number); } //# sourceMappingURL=continuation-exception.d.ts.map