示例#1
0
 public override void ExitSigned_index_expression([NotNull] TxMarkParser.Signed_index_expressionContext context)
 {
     if (context.OPERATOR_MINUS() != null)
     {
         _compileContext.Pop();
     }
 }
示例#2
0
 public override void EnterSigned_index_expression([NotNull] TxMarkParser.Signed_index_expressionContext context)
 {
     if (context.OPERATOR_MINUS() != null)
     {
         _compileContext.Push(CodeContextTypes.SignedExpression);
     }
 }