コード例 #1
0
ファイル: JSONBaseListener.cs プロジェクト: zihotki/Excess
 /// <summary>
 /// Exit a parse tree produced by <see cref="JSONParser.Constant"/>.
 /// <para>The default implementation does nothing.</para>
 /// </summary>
 /// <param name="context">The parse tree.</param>
 public virtual void ExitConstant([NotNull] JSONParser.ConstantContext context)
 {
 }
コード例 #2
0
ファイル: JSONVisitor.cs プロジェクト: TechnoLingua/NeoEdit
 public override ParserNode VisitConstant(JSONParser.ConstantContext context) => GetNode(context, CONSTANT);