public override void ExitOptionBaseStmt(VBAParser.OptionBaseStmtContext context)
 {
     if (context.numberLiteral()?.INTEGERLITERAL().Symbol.Text == "1")
     {
         _contexts.Add(new QualifiedContext <ParserRuleContext>(CurrentModuleName, context));
     }
 }
 public override void ExitOptionBaseStmt(VBAParser.OptionBaseStmtContext context)
 {
     if (context.numberLiteral()?.INTEGERLITERAL().Symbol.Text == "0")
     {
         _contexts.Add(context);
     }
 }