Show / Hide Table of Contents

Interface IJSONListener

This interface defines a complete listener for a parse tree produced by JSONParser.

Namespace: GCore.Antlr.Grammers.Json
Assembly: Json.dll
Syntax
public interface IJSONListener : Antlr4.Runtime.Tree.IParseTreeListener

Methods

| Improve this Doc View Source

EnterArr(JSONParser.ArrContext)

Enter a parse tree produced by arr().

Declaration
void EnterArr(JSONParser.ArrContext context)
Parameters
Type Name Description
JSONParser.ArrContext context

The parse tree.

| Improve this Doc View Source

EnterJson(JSONParser.JsonContext)

Enter a parse tree produced by json().

Declaration
void EnterJson(JSONParser.JsonContext context)
Parameters
Type Name Description
JSONParser.JsonContext context

The parse tree.

| Improve this Doc View Source

EnterObj(JSONParser.ObjContext)

Enter a parse tree produced by obj().

Declaration
void EnterObj(JSONParser.ObjContext context)
Parameters
Type Name Description
JSONParser.ObjContext context

The parse tree.

| Improve this Doc View Source

EnterPair(JSONParser.PairContext)

Enter a parse tree produced by pair().

Declaration
void EnterPair(JSONParser.PairContext context)
Parameters
Type Name Description
JSONParser.PairContext context

The parse tree.

| Improve this Doc View Source

EnterValue(JSONParser.ValueContext)

Enter a parse tree produced by value().

Declaration
void EnterValue(JSONParser.ValueContext context)
Parameters
Type Name Description
JSONParser.ValueContext context

The parse tree.

| Improve this Doc View Source

ExitArr(JSONParser.ArrContext)

Exit a parse tree produced by arr().

Declaration
void ExitArr(JSONParser.ArrContext context)
Parameters
Type Name Description
JSONParser.ArrContext context

The parse tree.

| Improve this Doc View Source

ExitJson(JSONParser.JsonContext)

Exit a parse tree produced by json().

Declaration
void ExitJson(JSONParser.JsonContext context)
Parameters
Type Name Description
JSONParser.JsonContext context

The parse tree.

| Improve this Doc View Source

ExitObj(JSONParser.ObjContext)

Exit a parse tree produced by obj().

Declaration
void ExitObj(JSONParser.ObjContext context)
Parameters
Type Name Description
JSONParser.ObjContext context

The parse tree.

| Improve this Doc View Source

ExitPair(JSONParser.PairContext)

Exit a parse tree produced by pair().

Declaration
void ExitPair(JSONParser.PairContext context)
Parameters
Type Name Description
JSONParser.PairContext context

The parse tree.

| Improve this Doc View Source

ExitValue(JSONParser.ValueContext)

Exit a parse tree produced by value().

Declaration
void ExitValue(JSONParser.ValueContext context)
Parameters
Type Name Description
JSONParser.ValueContext context

The parse tree.

  • Improve this Doc
  • View Source
In This Article
Back to top Generated by DocFX