Skip to content

Commit 64e0455

Browse files
committedJan 27, 2014
Add Regexp.quote as an alias of Regexp.escape
1 parent 8027655 commit 64e0455

File tree

4 files changed

+27
-15
lines changed

4 files changed

+27
-15
lines changed
 

‎CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -117,6 +117,8 @@
117117

118118
* Fix `Regexp.escape` to properly escape \n, \t, \r, \f characters.
119119

120+
* Add `Regexp.quote` as an alias of `escape`.
121+
120122
## 0.5.5 2013-11-25
121123

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

‎opal/corelib/regexp.rb

+18-14
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,26 @@
11
class Regexp
22
`def._isRegexp = true`
33

4-
def self.escape(string)
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-
}
12-
end
4+
class << self
5+
def escape(string)
6+
%x{
7+
return string.replace(/[\-\[\]\/\{\}\(\)\*\+\?\.\\\^\$| ]/g, '\\$&')
8+
.replace(/[\n]/g, '\\n')
9+
.replace(/[\r]/g, '\\r')
10+
.replace(/[\f]/g, '\\f')
11+
.replace(/[\t]/g, '\\t');
12+
}
13+
end
1314

14-
def self.union(*parts)
15-
`new RegExp(parts.join(''))`
16-
end
15+
alias quote escape
16+
17+
def union(*parts)
18+
`new RegExp(parts.join(''))`
19+
end
1720

18-
def self.new(regexp, options = undefined)
19-
`new RegExp(regexp, options)`
21+
def new(regexp, options = undefined)
22+
`new RegExp(regexp, options)`
23+
end
2024
end
2125

2226
def ==(other)

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

+6
Original file line numberDiff line numberDiff line change
@@ -54,3 +54,9 @@
5454
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"
5555
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"
5656
end
57+
58+
opal_filter "Regexp.quote" do
59+
fails "Regexp.quote sets the encoding of the result to US-ASCII if there are only US-ASCII characters present in the input String"
60+
fails "Regexp.quote 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"
61+
fails "Regexp.quote sets the encoding of the result to ASCII-8BIT if any non-US-ASCII characters are present in an input String with invalid encoding"
62+
end

‎spec/opal/rubyspecs

+1-1
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ core/time/year_spec
188188

189189
core/regexp/escape_spec
190190
core/regexp/match_spec
191-
#core/regexp/quote_spec
191+
core/regexp/quote_spec
192192

193193
language/BEGIN_spec
194194
language/alias_spec

0 commit comments

Comments
 (0)
Please sign in to comment.