Пример #1
0
        public RetrieveToolCommand(CommandToolParser.RetrieveCommandContext context)
        {
            Type = context.GetChild(0).GetText().Substring(1).ToUpper();
            if (context.LITERAL() == null)
            {
                return;
            }
            var type = ProcessId(context.LITERAL().GetText(), out var number, out var symbol);

            if (HasSemanticError)
            {
                return;
            }

            if (type)
            {
                Symbol = symbol;
            }
            else
            {
                Address = number;
            }
        }
 /// <summary>
 /// Exit a parse tree produced by <see cref="CommandToolParser.retrieveCommand"/>.
 /// <para>The default implementation does nothing.</para>
 /// </summary>
 /// <param name="context">The parse tree.</param>
 public virtual void ExitRetrieveCommand([NotNull] CommandToolParser.RetrieveCommandContext context)
 {
 }
Пример #3
0
 /// <summary>
 /// Visit a parse tree produced by <see cref="CommandToolParser.retrieveCommand"/>.
 /// <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 VisitRetrieveCommand([NotNull] CommandToolParser.RetrieveCommandContext context)
 {
     return(VisitChildren(context));
 }