Actions
Bug #12394
closedRegexp#match? should strictly return true or false
    Bug #12394:
    Regexp#match? should strictly return true or false
  
Description
Now:
//.match?"" #=> nil
/a/.match?"" #=> nil
Should be:
//.match?"" #=> true
/a/.match?"" #=> false
  
Actions