Interface JSON5Listener
- All Superinterfaces:
org.antlr.v4.runtime.tree.ParseTreeListener
- All Known Implementing Classes:
JSON5BaseListener
public interface JSON5Listener
extends org.antlr.v4.runtime.tree.ParseTreeListener
This interface defines a complete listener for a parse tree produced by
JSON5Parser.-
Method Summary
Modifier and TypeMethodDescriptionvoidEnter a parse tree produced byJSON5Parser.arr().voidEnter a parse tree produced byJSON5Parser.json5().voidEnter a parse tree produced byJSON5Parser.key().voidEnter a parse tree produced byJSON5Parser.member().voidEnter a parse tree produced byJSON5Parser.number().voidEnter a parse tree produced byJSON5Parser.obj().voidEnter a parse tree produced byJSON5Parser.value().voidExit a parse tree produced byJSON5Parser.arr().voidExit a parse tree produced byJSON5Parser.json5().voidExit a parse tree produced byJSON5Parser.key().voidExit a parse tree produced byJSON5Parser.member().voidExit a parse tree produced byJSON5Parser.number().voidExit a parse tree produced byJSON5Parser.obj().voidExit a parse tree produced byJSON5Parser.value().Methods inherited from interface org.antlr.v4.runtime.tree.ParseTreeListener
enterEveryRule, exitEveryRule, visitErrorNode, visitTerminal
-
Method Details
-
enterJson5
Enter a parse tree produced byJSON5Parser.json5().- Parameters:
ctx- the parse tree
-
exitJson5
Exit a parse tree produced byJSON5Parser.json5().- Parameters:
ctx- the parse tree
-
enterObj
Enter a parse tree produced byJSON5Parser.obj().- Parameters:
ctx- the parse tree
-
exitObj
Exit a parse tree produced byJSON5Parser.obj().- Parameters:
ctx- the parse tree
-
enterMember
Enter a parse tree produced byJSON5Parser.member().- Parameters:
ctx- the parse tree
-
exitMember
Exit a parse tree produced byJSON5Parser.member().- Parameters:
ctx- the parse tree
-
enterKey
Enter a parse tree produced byJSON5Parser.key().- Parameters:
ctx- the parse tree
-
exitKey
Exit a parse tree produced byJSON5Parser.key().- Parameters:
ctx- the parse tree
-
enterValue
Enter a parse tree produced byJSON5Parser.value().- Parameters:
ctx- the parse tree
-
exitValue
Exit a parse tree produced byJSON5Parser.value().- Parameters:
ctx- the parse tree
-
enterArr
Enter a parse tree produced byJSON5Parser.arr().- Parameters:
ctx- the parse tree
-
exitArr
Exit a parse tree produced byJSON5Parser.arr().- Parameters:
ctx- the parse tree
-
enterNumber
Enter a parse tree produced byJSON5Parser.number().- Parameters:
ctx- the parse tree
-
exitNumber
Exit a parse tree produced byJSON5Parser.number().- Parameters:
ctx- the parse tree
-