public override String VisitArctan([NotNull] mathParser.ArctanContext context) { expression = expression + "System.Math.Atan("; Visit(context.GetChild(2)); expression = expression + ")"; return(expression); }
/// <summary> /// Visit a parse tree produced by <see cref="mathParser.arctan"/>. /// <para> /// The default implementation returns the result of calling <see cref="AbstractParseTreeVisitor{Result}.VisitChildren(IRuleNode)"/> /// on <paramref name="context"/>. /// </para> /// </summary> /// <param name="context">The parse tree.</param> /// <return>The visitor result.</return> public virtual Result VisitArctan([NotNull] mathParser.ArctanContext context) { return(VisitChildren(context)); }