Package org.reploop.parser.json.base
Interface JSON5Listener
-
- All Superinterfaces:
org.antlr.v4.runtime.tree.ParseTreeListener
- All Known Implementing Classes:
JSON5BaseListener
public interface JSON5Listener extends org.antlr.v4.runtime.tree.ParseTreeListenerThis interface defines a complete listener for a parse tree produced byJSON5Parser.
-
-
Method Summary
-
-
-
Method Detail
-
enterJson5
void enterJson5(JSON5Parser.Json5Context ctx)
Enter a parse tree produced byJSON5Parser.json5().- Parameters:
ctx- the parse tree
-
exitJson5
void exitJson5(JSON5Parser.Json5Context ctx)
Exit a parse tree produced byJSON5Parser.json5().- Parameters:
ctx- the parse tree
-
enterObj
void enterObj(JSON5Parser.ObjContext ctx)
Enter a parse tree produced byJSON5Parser.obj().- Parameters:
ctx- the parse tree
-
exitObj
void exitObj(JSON5Parser.ObjContext ctx)
Exit a parse tree produced byJSON5Parser.obj().- Parameters:
ctx- the parse tree
-
enterPair
void enterPair(JSON5Parser.PairContext ctx)
Enter a parse tree produced byJSON5Parser.pair().- Parameters:
ctx- the parse tree
-
exitPair
void exitPair(JSON5Parser.PairContext ctx)
Exit a parse tree produced byJSON5Parser.pair().- Parameters:
ctx- the parse tree
-
enterKey
void enterKey(JSON5Parser.KeyContext ctx)
Enter a parse tree produced byJSON5Parser.key().- Parameters:
ctx- the parse tree
-
exitKey
void exitKey(JSON5Parser.KeyContext ctx)
Exit a parse tree produced byJSON5Parser.key().- Parameters:
ctx- the parse tree
-
enterValue
void enterValue(JSON5Parser.ValueContext ctx)
Enter a parse tree produced byJSON5Parser.value().- Parameters:
ctx- the parse tree
-
exitValue
void exitValue(JSON5Parser.ValueContext ctx)
Exit a parse tree produced byJSON5Parser.value().- Parameters:
ctx- the parse tree
-
enterArr
void enterArr(JSON5Parser.ArrContext ctx)
Enter a parse tree produced byJSON5Parser.arr().- Parameters:
ctx- the parse tree
-
exitArr
void exitArr(JSON5Parser.ArrContext ctx)
Exit a parse tree produced byJSON5Parser.arr().- Parameters:
ctx- the parse tree
-
enterNumber
void enterNumber(JSON5Parser.NumberContext ctx)
Enter a parse tree produced byJSON5Parser.number().- Parameters:
ctx- the parse tree
-
exitNumber
void exitNumber(JSON5Parser.NumberContext ctx)
Exit a parse tree produced byJSON5Parser.number().- Parameters:
ctx- the parse tree
-
-