Exemple #1
0
 public override double VisitParenthesizedExpr(LabCalculatorParser.ParenthesizedExprContext context)
 {
     return(Visit(context.expression()));
 }
 /// <summary>
 /// Exit a parse tree produced by the <c>ParenthesizedExpr</c>
 /// labeled alternative in <see cref="LabCalculatorParser.expression"/>.
 /// <para>The default implementation does nothing.</para>
 /// </summary>
 /// <param name="context">The parse tree.</param>
 public virtual void ExitParenthesizedExpr([NotNull] LabCalculatorParser.ParenthesizedExprContext context)
 {
 }