Example #1
0
 public override string VisitInstruccionRsubInvalida([NotNull] SicAsmParser.InstruccionRsubInvalidaContext context)
 {
     /* Si es la primera pasada */
     if (_is_first_pass)
     {
         _lines_pc.Add(_line_count + 1, _program_counter);
     }
     else /* Si es la segunda pasada */
     {
         _lines_opcode.Add(_line_count + 1, "------");
     }
     return("Error: La instruccion RSUB debe ir sola.");
 }
Example #2
0
 /// <summary>
 /// Exit a parse tree produced by the <c>InstruccionRsubInvalida</c>
 /// labeled alternative in <see cref="SicAsmParser.inst"/>.
 /// <para>The default implementation does nothing.</para>
 /// </summary>
 /// <param name="context">The parse tree.</param>
 public virtual void ExitInstruccionRsubInvalida([NotNull] SicAsmParser.InstruccionRsubInvalidaContext context)
 {
 }
Example #3
0
 /// <summary>
 /// Visit a parse tree produced by the <c>InstruccionRsubInvalida</c>
 /// labeled alternative in <see cref="SicAsmParser.inst"/>.
 /// <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 VisitInstruccionRsubInvalida([NotNull] SicAsmParser.InstruccionRsubInvalidaContext context)
 {
     return(VisitChildren(context));
 }