示例#1
0
        public override int VisitSelective([NotNull] CBluntParser.SelectiveContext context)
        {
#if DEBUG
            Console.WriteLine("VisitSelective");
#endif
            this.AddText(context.GetChild(0).GetText());
            this.AddText(context.GetChild(1).GetText());
            Visit(context.condition());
            this.AddText(context.GetChild(3).GetText());
            for (int counter = 4; counter < context.children.Count(); ++counter)
            {
                Visit(context.GetChild(counter));
            }
            return(0);
        }
示例#2
0
 /// <summary>
 /// Visit a parse tree produced by <see cref="CBluntParser.selective"/>.
 /// <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 VisitSelective([NotNull] CBluntParser.SelectiveContext context)
 {
     return(VisitChildren(context));
 }