thaw-grammar
Version:
Implementations of the grammars of several programming languages, including LISP, Scheme, Prolog, and the Lambda Calculus.
8 lines • 385 B
TypeScript
import { OnePartFunctionName } from './one-part-function-name';
export declare function isTwoPartFunctionName(obj: unknown): obj is TwoPartFunctionName;
export declare class TwoPartFunctionName extends OnePartFunctionName {
readonly clusterPart: string;
constructor(clusterPart: string, f: string);
toString(): string;
}
//# sourceMappingURL=two-part-function-name.d.ts.map