Skip to content

Commit 58a65bf

Browse files
authoredDec 10, 2021
Squirrel: Use standard char token (#3256)
1 parent c56e4bf commit 58a65bf

File tree

4 files changed

+27
-23
lines changed

4 files changed

+27
-23
lines changed
 

‎components/prism-squirrel.js

+13-12
Original file line numberDiff line numberDiff line change
@@ -7,18 +7,11 @@ Prism.languages.squirrel = Prism.languages.extend('clike', {
77
greedy: true
88
}
99
],
10-
'string': [
11-
{
12-
pattern: /(^|[^\\"'@])(?:@"(?:[^"]|"")*"(?!")|"(?:[^\\\r\n"]|\\.)*")/,
13-
lookbehind: true,
14-
greedy: true
15-
},
16-
{
17-
pattern: /(^|[^\\"'])'(?:[^\\']|\\(?:[xuU][0-9a-fA-F]{0,8}|[\s\S]))'/,
18-
lookbehind: true,
19-
greedy: true
20-
}
21-
],
10+
'string': {
11+
pattern: /(^|[^\\"'@])(?:@"(?:[^"]|"")*"(?!")|"(?:[^\\\r\n"]|\\.)*")/,
12+
lookbehind: true,
13+
greedy: true
14+
},
2215

2316
'class-name': {
2417
pattern: /(\b(?:class|enum|extends|instanceof)\s+)\w+(?:\.\w+)*/,
@@ -34,6 +27,14 @@ Prism.languages.squirrel = Prism.languages.extend('clike', {
3427
'punctuation': /[(){}\[\],;.]/
3528
});
3629

30+
Prism.languages.insertBefore('squirrel', 'string', {
31+
'char': {
32+
pattern: /(^|[^\\"'])'(?:[^\\']|\\(?:[xuU][0-9a-fA-F]{0,8}|[\s\S]))'/,
33+
lookbehind: true,
34+
greedy: true
35+
}
36+
});
37+
3738
Prism.languages.insertBefore('squirrel', 'operator', {
3839
'attribute-punctuation': {
3940
pattern: /<\/|\/>/,

‎components/prism-squirrel.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
'w'
2+
'\''
3+
'\x41' '\u0041' '\U00000041'
4+
5+
----------------------------------------------------
6+
7+
[
8+
["char", "'w'"],
9+
["char", "'\\''"],
10+
["char", "'\\x41'"], ["char", "'\\u0041'"], ["char", "'\\U00000041'"]
11+
]

‎tests/languages/squirrel/string_feature.test

+2-10
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,6 @@ multiline verbatim string
1414
characters
1515
"
1616

17-
'w'
18-
'\''
19-
'\x41' '\u0041' '\U00000041'
20-
2117
----------------------------------------------------
2218

2319
[
@@ -29,9 +25,5 @@ multiline verbatim string
2925
["string", "@\"I'm a verbatim string\""],
3026
["string", "@\" I'm a\r\nmultiline verbatim string\r\n\""],
3127

32-
["string", "@\"\r\n this is a multiline string\r\n it will \"\"embed\"\" all the new line\r\n characters\r\n\""],
33-
34-
["string", "'w'"],
35-
["string", "'\\''"],
36-
["string", "'\\x41'"], ["string", "'\\u0041'"], ["string", "'\\U00000041'"]
37-
]
28+
["string", "@\"\r\n this is a multiline string\r\n it will \"\"embed\"\" all the new line\r\n characters\r\n\""]
29+
]

0 commit comments

Comments
 (0)
Please sign in to comment.