Exemplo n.º 1
0
 public override void ExitOnErrorStmt([NotNull] VBAParser.OnErrorStmtContext context)
 {
     if (context.ON_LOCAL_ERROR() != null)
     {
         _contexts.Add(new QualifiedContext <ParserRuleContext>(CurrentModuleName, context));
     }
 }
Exemplo n.º 2
0
 public override void EnterOnErrorStmt(VBAParser.OnErrorStmtContext context)
 {
     CheckContext(context, context.ON_ERROR());
     CheckContext(context, context.ON_LOCAL_ERROR());
     base.EnterOnErrorStmt(context);
 }