Skip to content

Commit 3786f39

Browse files
Ruby: Added missing regex flags (#2845)
1 parent 48ab42b commit 3786f39

File tree

3 files changed

+34
-9
lines changed

3 files changed

+34
-9
lines changed

components/prism-ruby.js

+7-7
Original file line numberDiff line numberDiff line change
@@ -40,20 +40,20 @@
4040
'regex': [
4141
{
4242
pattern: RegExp(/%r/.source + '(?:' + [
43-
/([^a-zA-Z0-9\s{(\[<])(?:(?!\1)[^\\]|\\[\s\S])*\1[gim]{0,3}/.source,
44-
/\((?:[^()\\]|\\[\s\S])*\)[gim]{0,3}/.source,
43+
/([^a-zA-Z0-9\s{(\[<])(?:(?!\1)[^\\]|\\[\s\S])*\1/.source,
44+
/\((?:[^()\\]|\\[\s\S])*\)/.source,
4545
// Here we need to specifically allow interpolation
46-
/\{(?:[^#{}\\]|#(?:\{[^}]+\})?|\\[\s\S])*\}[gim]{0,3}/.source,
47-
/\[(?:[^\[\]\\]|\\[\s\S])*\][gim]{0,3}/.source,
48-
/<(?:[^<>\\]|\\[\s\S])*>[gim]{0,3}/.source
49-
].join('|') + ')'),
46+
/\{(?:[^#{}\\]|#(?:\{[^}]+\})?|\\[\s\S])*\}/.source,
47+
/\[(?:[^\[\]\\]|\\[\s\S])*\]/.source,
48+
/<(?:[^<>\\]|\\[\s\S])*>/.source
49+
].join('|') + ')' + /[egimnosux]{0,6}/.source),
5050
greedy: true,
5151
inside: {
5252
'interpolation': interpolation
5353
}
5454
},
5555
{
56-
pattern: /(^|[^/])\/(?!\/)(?:\[[^\r\n\]]+\]|\\.|[^[/\\\r\n])+\/[gim]{0,3}(?=\s*(?:$|[\r\n,.;})#]))/,
56+
pattern: /(^|[^/])\/(?!\/)(?:\[[^\r\n\]]+\]|\\.|[^[/\\\r\n])+\/[egimnosux]{0,6}(?=\s*(?:$|[\r\n,.;})#]))/,
5757
lookbehind: true,
5858
greedy: true,
5959
inside: {

components/prism-ruby.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tests/languages/ruby/regex_feature.test

+26-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
/[bar]/,
33
/./i;
44
/foo#{bar}/;
5+
/ab+c/ix
56
%r!foo?bar#{39+3}!
67
%r(foo?bar#{39+3})
78
%r{foo?bar#{39+3}}
@@ -11,6 +12,17 @@
1112
/foo/ # comment
1213
/foo#{bar}/ # comment
1314

15+
# flags
16+
/abc/e
17+
/abc/g
18+
/abc/i
19+
/abc/m
20+
/abc/n
21+
/abc/o
22+
/abc/s
23+
/abc/u
24+
/abc/x
25+
1426
----------------------------------------------------
1527

1628
[
@@ -33,6 +45,8 @@
3345
]],
3446
["punctuation", ";"],
3547

48+
["regex", ["/ab+c/ix"]],
49+
3650
["regex", [
3751
"%r!foo?bar",
3852
["interpolation", [
@@ -105,7 +119,18 @@
105119
]],
106120
"/"
107121
]],
108-
["comment", "# comment"]
122+
["comment", "# comment"],
123+
124+
["comment", "# flags"],
125+
["regex", ["/abc/e"]],
126+
["regex", ["/abc/g"]],
127+
["regex", ["/abc/i"]],
128+
["regex", ["/abc/m"]],
129+
["regex", ["/abc/n"]],
130+
["regex", ["/abc/o"]],
131+
["regex", ["/abc/s"]],
132+
["regex", ["/abc/u"]],
133+
["regex", ["/abc/x"]]
109134
]
110135

111136
----------------------------------------------------

0 commit comments

Comments
 (0)