public override void ExitOptionCompareStmt(VBAParser.OptionCompareStmtContext context)
 {
     // BINARY is the default, and DATABASE is specified by default + only valid in Access.
     if (context.TEXT() == null && context.DATABASE() == null)
     {
         _contexts.Add(new QualifiedContext <ParserRuleContext>(CurrentModuleName, context));
     }
 }
 public override void ExitOptionCompareStmt(VBAParser.OptionCompareStmtContext context)
 {
     // BINARY is the default, and DATABASE is specified by default + only valid in Access.
     if (context.TEXT() == null && context.DATABASE() == null)
     {
         SaveContext(context);
     }
 }