Exemple #1
0
        public void exitEntry(ArgsParser.EntryContext ctx)
        {
            String key   = values.Get(ctx.k);
            String value = values.Get(ctx.v);

            args[key] = value;
        }
Exemple #2
0
 /// <summary>
 /// Exit a parse tree produced by <see cref="ArgsParser.entry"/>.
 /// <para>The default implementation does nothing.</para>
 /// </summary>
 /// <param name="context">The parse tree.</param>
 public virtual void ExitEntry([NotNull] ArgsParser.EntryContext context)
 {
 }