public override void EnterMethodParameter([NotNull] FormulaParser.MethodParameterContext context)
 {
     if (methodStack.Peek().CurrentParamCount > 0)
     {
         resultBuilder.Append(",");
     }
     methodStack.Peek().CurrentParamCount++;
 }
Example #2
0
 /// <summary>
 /// Exit a parse tree produced by <see cref="FormulaParser.methodParameter"/>.
 /// <para>The default implementation does nothing.</para>
 /// </summary>
 /// <param name="context">The parse tree.</param>
 public virtual void ExitMethodParameter([NotNull] FormulaParser.MethodParameterContext context)
 {
 }