Esempio n. 1
0
 public override String VisitCosh([NotNull] mathParser.CoshContext context)
 {
     expression = expression + "System.Math.Cosh(";
     Visit(context.GetChild(2));
     expression = expression + ")";
     return(expression);
 }
Esempio n. 2
0
 /// <summary>
 /// Visit a parse tree produced by <see cref="mathParser.cosh"/>.
 /// <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 VisitCosh([NotNull] mathParser.CoshContext context)
 {
     return(VisitChildren(context));
 }