UNPKG

antlr4-c3

Version:

A code completion core implementation for ANTLR4 based parsers

8 lines (7 loc) 294 B
import { MethodSymbol } from "./MethodSymbol.js"; import { VariableSymbol } from "./VariableSymbol.js"; /** A field which belongs to a class or other outer container structure. */ export declare class FieldSymbol extends VariableSymbol { setter?: MethodSymbol; getter?: MethodSymbol; }