Beispiel #1
0
        public override int VisitRegexp_clos_other(RegExpParser.Regexp_clos_otherContext context)
        {
            // PREORDER ACTIONS
            string label = "Regexp_clos_other_" + ms_ASTElementCounter.ToString();

            m_outputStream.WriteLine("\"{0}\"->\"{1}\";", m_PTPath.Peek(), label);
            ms_ASTElementCounter++;
            m_PTPath.Push(label);

            base.VisitRegexp_clos_other(context);

            // POSTORDER ACTIONS
            m_PTPath.Pop();

            return(0);
        }
Beispiel #2
0
 /// <summary>
 /// Visit a parse tree produced by the <c>regexp_clos_other</c>
 /// labeled alternative in <see cref="RegExpParser.regexp_closure"/>.
 /// <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 VisitRegexp_clos_other([NotNull] RegExpParser.Regexp_clos_otherContext context)
 {
     return(VisitChildren(context));
 }
 /// <summary>
 /// Exit a parse tree produced by the <c>regexp_clos_other</c>
 /// labeled alternative in <see cref="RegExpParser.regexp_closure"/>.
 /// <para>The default implementation does nothing.</para>
 /// </summary>
 /// <param name="context">The parse tree.</param>
 public virtual void ExitRegexp_clos_other([NotNull] RegExpParser.Regexp_clos_otherContext context)
 {
 }