Skip to content

Commit a7bb300

Browse files
authoredDec 10, 2021
Smalltalk: Use standard char token (#3255)
1 parent 58a65bf commit a7bb300

File tree

4 files changed

+41
-35
lines changed

4 files changed

+41
-35
lines changed
 

‎components/prism-smalltalk.js

+10-4
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,16 @@
11
Prism.languages.smalltalk = {
2-
'comment': /"(?:""|[^"])*"/,
3-
'character': {
2+
'comment': {
3+
pattern: /"(?:""|[^"])*"/,
4+
greedy: true
5+
},
6+
'char': {
47
pattern: /\$./,
5-
alias: 'string'
8+
greedy: true
9+
},
10+
'string': {
11+
pattern: /'(?:''|[^'])*'/,
12+
greedy: true
613
},
7-
'string': /'(?:''|[^'])*'/,
814
'symbol': /#[\da-z]+|#(?:-|([+\/\\*~<>=@%|&?!])\1?)|#(?=\()/i,
915
'block-arguments': {
1016
pattern: /(\[\s*):[^\[|]*\|/,

‎components/prism-smalltalk.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
1-
$a
2-
$4
3-
$.
4-
$^
5-
6-
----------------------------------------------------
7-
8-
[
9-
["character", "$a"],
10-
["character", "$4"],
11-
["character", "$."],
12-
["character", "$^"]
13-
]
14-
15-
----------------------------------------------------
16-
17-
Checks for characters.
1+
$a
2+
$4
3+
$.
4+
$^
5+
6+
----------------------------------------------------
7+
8+
[
9+
["char", "$a"],
10+
["char", "$4"],
11+
["char", "$."],
12+
["char", "$^"]
13+
]
14+
15+
----------------------------------------------------
16+
17+
Checks for characters.
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
1-
$'
2-
'foobar'
3-
4-
----------------------------------------------------
5-
6-
[
7-
["character", "$'"],
8-
["string", "'foobar'"]
9-
]
10-
11-
----------------------------------------------------
12-
13-
Checks a single-quote-character doesn't confuse string parsing.
1+
$'
2+
'foobar'
3+
4+
----------------------------------------------------
5+
6+
[
7+
["char", "$'"],
8+
["string", "'foobar'"]
9+
]
10+
11+
----------------------------------------------------
12+
13+
Checks a single-quote-character doesn't confuse string parsing.

0 commit comments

Comments
 (0)
Please sign in to comment.