示例#1
0
        private string FindName(Processor processor)
        {
            IRuleNode node = _declearationContext.Parent;

            while (node != null)
            {
                MegaScryptParser.DeclarationContext varContext = node as MegaScryptParser.DeclarationContext;

                if (varContext != null)
                {
                    return(varContext.Id().Accept(processor) as string);
                }

                node = node.Parent;
            }

            return(null);
        }
示例#2
0
 /// <summary>
 /// Visit a parse tree produced by <see cref="MegaScryptParser.declaration"/>.
 /// <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 VisitDeclaration([NotNull] MegaScryptParser.DeclarationContext context)
 {
     return(VisitChildren(context));
 }