Esempio n. 1
0
        public LiteralToolCommand(CommandToolParser.LiteralCommandContext context)
        {
            if (context.LITERAL().Length < 1)
            {
                return;
            }
            var type = ProcessId(context.LITERAL()[0].GetText(), out var number, out var symbol);

            if (HasSemanticError)
            {
                return;
            }

            if (type)
            {
                Symbol = symbol;
            }
            else
            {
                Address = number;
            }

            if (context.HASH() != null)
            {
                IsAuto = true;
            }
            if (context.LITERAL().Length < 2)
            {
                return;
            }

            var idText = context.LITERAL()[1].GetText();

            if (char.IsDigit(idText[0]))
            {
                HasSemanticError = true;
                return;
            }
            LiteralName = idText;
        }
 /// <summary>
 /// Exit a parse tree produced by <see cref="CommandToolParser.literalCommand"/>.
 /// <para>The default implementation does nothing.</para>
 /// </summary>
 /// <param name="context">The parse tree.</param>
 public virtual void ExitLiteralCommand([NotNull] CommandToolParser.LiteralCommandContext context)
 {
 }
 /// <summary>
 /// Visit a parse tree produced by <see cref="CommandToolParser.literalCommand"/>.
 /// <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 VisitLiteralCommand([NotNull] CommandToolParser.LiteralCommandContext context)
 {
     return(VisitChildren(context));
 }