UNPKG

antlr4-c3

Version:

A code completion core implementation for ANTLR4 based parsers

7 lines (6 loc) 225 B
import { TypedSymbol } from "./TypedSymbol.js"; import { IType } from "./types.js"; export declare class VariableSymbol extends TypedSymbol { value: unknown; constructor(name: string, value: unknown, type?: IType); }