UNPKG

antlr4-c3

Version:

A code completion core implementation for ANTLR4 based parsers

8 lines (7 loc) 276 B
import { IType } from "./types.js"; import { BaseSymbol } from "./BaseSymbol.js"; /** A symbol with an attached type (variables, fields etc.). */ export declare class TypedSymbol extends BaseSymbol { type: IType | undefined; constructor(name: string, type?: IType); }