Skip to content

Commit 8027655

Browse files
committedJan 27, 2014
Fix Regexp.escape to escape \t, \r, \n, \f characters
1 parent 41f196d commit 8027655

File tree

4 files changed

+16
-2
lines changed

4 files changed

+16
-2
lines changed
 

‎CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -115,6 +115,8 @@
115115

116116
* Fix some stdlib `Date` methods.
117117

118+
* Fix `Regexp.escape` to properly escape \n, \t, \r, \f characters.
119+
118120
## 0.5.5 2013-11-25
119121

120122
* Fix regression: add `%i[foo bar]` style words back to lexer

‎opal/corelib/regexp.rb

+7-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,13 @@ class Regexp
22
`def._isRegexp = true`
33

44
def self.escape(string)
5-
`string.replace(/[\-\[\]\/\{\}\(\)\*\+\?\.\\\^\$| ]/g, '\\$&')`
5+
%x{
6+
return string.replace(/[\-\[\]\/\{\}\(\)\*\+\?\.\\\^\$| ]/g, '\\$&')
7+
.replace(/[\n]/g, '\\n')
8+
.replace(/[\r]/g, '\\r')
9+
.replace(/[\f]/g, '\\f')
10+
.replace(/[\t]/g, '\\t');
11+
}
612
end
713

814
def self.union(*parts)

‎spec/opal/filters/unsupported/encoding.rb

+6
Original file line numberDiff line numberDiff line change
@@ -48,3 +48,9 @@
4848
fails "Magic comment is case-insensitive"
4949
fails "Magic comment determines __ENCODING__"
5050
end
51+
52+
opal_filter "Regexp.escape" do
53+
fails "Regexp.escape sets the encoding of the result to US-ASCII if there are only US-ASCII characters present in the input String"
54+
fails "Regexp.escape sets the encoding of the result to the encoding of the String if any non-US-ASCII characters are present in an input String with valid encoding"
55+
fails "Regexp.escape sets the encoding of the result to ASCII-8BIT if any non-US-ASCII characters are present in an input String with invalid encoding"
56+
end

‎spec/opal/rubyspecs

+1-1
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ core/time/wednesday_spec
186186
core/time/yday_spec
187187
core/time/year_spec
188188

189-
#core/regexp/escape_spec
189+
core/regexp/escape_spec
190190
core/regexp/match_spec
191191
#core/regexp/quote_spec
192192

0 commit comments

Comments
 (0)
Please sign in to comment.