Ejemplo n.º 1
0
        public SectionToolCommand(CommandToolParser.SectionCommandContext context)
        {
            Type = context.GetChild(0).GetText().Substring(1).ToUpper();
            if (context.LITERAL().Length < 1)
            {
                return;
            }
            var type = ProcessId(context.LITERAL()[0].GetText(), out var hexnum, out var symbol);

            if (HasSemanticError)
            {
                return;
            }

            if (type)
            {
                StartSymbol = symbol;
            }
            else
            {
                StartAddress = hexnum;
            }

            if (context.LITERAL().Length < 2)
            {
                return;
            }
            type = ProcessId(context.LITERAL()[1].GetText(), out hexnum, out symbol);
            if (HasSemanticError)
            {
                return;
            }

            if (type)
            {
                EndSymbol = symbol;
            }
            else
            {
                EndAddress = hexnum;
            }
        }
Ejemplo n.º 2
0
 /// <summary>
 /// Exit a parse tree produced by <see cref="CommandToolParser.sectionCommand"/>.
 /// <para>The default implementation does nothing.</para>
 /// </summary>
 /// <param name="context">The parse tree.</param>
 public virtual void ExitSectionCommand([NotNull] CommandToolParser.SectionCommandContext context)
 {
 }
Ejemplo n.º 3
0
 /// <summary>
 /// Visit a parse tree produced by <see cref="CommandToolParser.sectionCommand"/>.
 /// <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 VisitSectionCommand([NotNull] CommandToolParser.SectionCommandContext context)
 {
     return(VisitChildren(context));
 }