-
Notifications
You must be signed in to change notification settings - Fork 188
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[GR-18163] Fix non-String argument conversion in Regexp.new
PullRequest: truffleruby/3462
- Loading branch information
Showing
7 changed files
with
62 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1 @@ | ||
fails:Regexp.compile given a String ignores the third argument if it is 'e' or 'euc' (case-insensitive) | ||
fails:Regexp.compile given a String ignores the third argument if it is 's' or 'sjis' (case-insensitive) | ||
fails:Regexp.compile given a String ignores the third argument if it is 'u' or 'utf8' (case-insensitive) | ||
fails:Regexp.compile given a Regexp does not honour options given as additional arguments | ||
fails(immutable regexp):Regexp.compile works by default for subclasses with overridden #initialize |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1 @@ | ||
fails:Regexp.new given a String ignores the third argument if it is 'e' or 'euc' (case-insensitive) | ||
fails:Regexp.new given a String ignores the third argument if it is 's' or 'sjis' (case-insensitive) | ||
fails:Regexp.new given a String ignores the third argument if it is 'u' or 'utf8' (case-insensitive) | ||
fails:Regexp.new given a Regexp does not honour options given as additional arguments | ||
fails(immutable regexp):Regexp.new works by default for subclasses with overridden #initialize |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters