JSONBaseListener class

This class provides an empty implementation of JSONListener, which can be extended to create a listener which only needs to handle a subset of the available methods.

Implemented types

Constructors

JSONBaseListener()

Properties

hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

enterArr(ArrContext ctx) → void
The default implementation does nothing.
override
enterEveryRule(ParserRuleContext ctx) → void
The default implementation does nothing.
enterJson(JsonContext ctx) → void
The default implementation does nothing.
override
enterObj(ObjContext ctx) → void
The default implementation does nothing.
override
enterPair(PairContext ctx) → void
The default implementation does nothing.
override
enterValue(ValueContext ctx) → void
The default implementation does nothing.
override
exitArr(ArrContext ctx) → void
The default implementation does nothing.
override
exitEveryRule(ParserRuleContext ctx) → void
The default implementation does nothing.
exitJson(JsonContext ctx) → void
The default implementation does nothing.
override
exitObj(ObjContext ctx) → void
The default implementation does nothing.
override
exitPair(PairContext ctx) → void
The default implementation does nothing.
override
exitValue(ValueContext ctx) → void
The default implementation does nothing.
override
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited
visitErrorNode(ErrorNode node) → void
The default implementation does nothing.
visitTerminal(TerminalNode node) → void
The default implementation does nothing.

Operators

operator ==(Object other) bool
The equality operator.
inherited