예제 #1
0
 /// <summary>
 /// Visit a parse tree produced by the <c>appterm_path</c>
 /// labeled alternative in <see cref="FullSimpleParser.appterm"/>.
 /// <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 VisitAppterm_path([NotNull] FullSimpleParser.Appterm_pathContext context)
 {
     return(VisitChildren(context));
 }
예제 #2
0
 public override Func <Context, ITerm> VisitAppterm_path([NotNull] FullSimpleParser.Appterm_pathContext context)
 {
     return(Visit(context.pathterm()));
 }