UNPKG

antlr4-c3

Version:

A code completion core implementation for ANTLR4 based parsers

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