@vlocode/apex
Version:
Salesforce APEX Parser and Grammar
10 lines • 483 B
TypeScript
import { TerminalNode } from "antlr4ng";
import { TypeArgumentsContext } from "../grammar";
import { ApexTypeRef } from "../types";
import { ApexSyntaxTreeVisitor } from "./syntaxTreeVisitor";
export declare class TypeRefVisitor extends ApexSyntaxTreeVisitor<ApexTypeRef> {
constructor(state?: Partial<ApexTypeRef>);
visitTypeArguments(ctx: TypeArgumentsContext): ApexTypeRef;
visitTerminal(node: TerminalNode): ApexTypeRef;
}
//# sourceMappingURL=typeRefVisitor.d.ts.map