EmbASP-CSharp
SPDGrammarVisitor.cs
1 //------------------------------------------------------------------------------
2 // <auto-generated>
3 // This code was generated by a tool.
4 // ANTLR Version: 4.7
5 //
6 // Changes to this file may cause incorrect behavior and will be lost if
7 // the code is regenerated.
8 // </auto-generated>
9 //------------------------------------------------------------------------------
10 
11 // Generated from SPDGrammar.g4 by ANTLR 4.7
12 
13 // Unreachable code detected
14 #pragma warning disable 0162
15 // The variable '...' is assigned but its value is never used
16 #pragma warning disable 0219
17 // Missing XML comment for publicly visible type or member '...'
18 #pragma warning disable 1591
19 // Ambiguous reference in cref attribute
20 #pragma warning disable 419
21 
22 using Antlr4.Runtime.Misc;
23 using Antlr4.Runtime.Tree;
24 using IToken = Antlr4.Runtime.IToken;
25 
31 [System.CodeDom.Compiler.GeneratedCode("ANTLR", "4.7")]
32 [System.CLSCompliant(false)]
33 public interface ISPDGrammarVisitor<Result> : IParseTreeVisitor<Result> {
39  Result VisitArray([NotNull] SPDGrammarParser.ArrayContext context);
45  Result VisitJson([NotNull] SPDGrammarParser.JsonContext context);
51  Result VisitOBjEcT([NotNull] SPDGrammarParser.OBjEcTContext context);
57  Result VisitPair([NotNull] SPDGrammarParser.PairContext context);
64  Result VisitArrayValue([NotNull] SPDGrammarParser.ArrayValueContext context);
71  Result VisitBooleanValue([NotNull] SPDGrammarParser.BooleanValueContext context);
78  Result VisitIntegerValue([NotNull] SPDGrammarParser.IntegerValueContext context);
85  Result VisitNullValue([NotNull] SPDGrammarParser.NullValueContext context);
92  Result VisitObjectValue([NotNull] SPDGrammarParser.ObjectValueContext context);
99  Result VisitStringValue([NotNull] SPDGrammarParser.StringValueContext context);
100 }
ISPDGrammarVisitor.VisitJson
Result VisitJson([NotNull] SPDGrammarParser.JsonContext context)
Visit a parse tree produced by SPDGrammarParser.json.
ISPDGrammarVisitor.VisitStringValue
Result VisitStringValue([NotNull] SPDGrammarParser.StringValueContext context)
Visit a parse tree produced by the StringValue labeled alternative in SPDGrammarParser....
ISPDGrammarVisitor.VisitObjectValue
Result VisitObjectValue([NotNull] SPDGrammarParser.ObjectValueContext context)
Visit a parse tree produced by the ObjectValue labeled alternative in SPDGrammarParser....
ISPDGrammarVisitor.VisitArrayValue
Result VisitArrayValue([NotNull] SPDGrammarParser.ArrayValueContext context)
Visit a parse tree produced by the ArrayValue labeled alternative in SPDGrammarParser....
ISPDGrammarVisitor.VisitOBjEcT
Result VisitOBjEcT([NotNull] SPDGrammarParser.OBjEcTContext context)
Visit a parse tree produced by SPDGrammarParser.oBjEcT.
ISPDGrammarVisitor.VisitNullValue
Result VisitNullValue([NotNull] SPDGrammarParser.NullValueContext context)
Visit a parse tree produced by the NullValue labeled alternative in SPDGrammarParser....
ISPDGrammarVisitor.VisitPair
Result VisitPair([NotNull] SPDGrammarParser.PairContext context)
Visit a parse tree produced by SPDGrammarParser.pair.
ISPDGrammarVisitor
This interface defines a complete generic visitor for a parse tree produced by SPDGrammarParser.
Definition: SPDGrammarVisitor.cs:33
ISPDGrammarVisitor.VisitBooleanValue
Result VisitBooleanValue([NotNull] SPDGrammarParser.BooleanValueContext context)
Visit a parse tree produced by the BooleanValue labeled alternative in SPDGrammarParser....
ISPDGrammarVisitor.VisitIntegerValue
Result VisitIntegerValue([NotNull] SPDGrammarParser.IntegerValueContext context)
Visit a parse tree produced by the IntegerValue labeled alternative in SPDGrammarParser....
ISPDGrammarVisitor.VisitArray
Result VisitArray([NotNull] SPDGrammarParser.ArrayContext context)
Visit a parse tree produced by SPDGrammarParser.array.