Skip to content

Commit 8e0e95f

Browse files
authoredDec 7, 2021
Objective C: Improved string token (#3235)
1 parent afd77ed commit 8e0e95f

File tree

3 files changed

+15
-9
lines changed

3 files changed

+15
-9
lines changed
 

‎components/prism-objectivec.js

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
Prism.languages.objectivec = Prism.languages.extend('c', {
2-
'string': /("|')(?:\\(?:\r\n|[\s\S])|(?!\1)[^\\\r\n])*\1|@"(?:\\(?:\r\n|[\s\S])|[^"\\\r\n])*"/,
2+
'string': {
3+
pattern: /@?"(?:\\(?:\r\n|[\s\S])|[^"\\\r\n])*"/,
4+
greedy: true
5+
},
36
'keyword': /\b(?:asm|auto|break|case|char|const|continue|default|do|double|else|enum|extern|float|for|goto|if|in|inline|int|long|register|return|self|short|signed|sizeof|static|struct|super|switch|typedef|typeof|union|unsigned|void|volatile|while)\b|(?:@interface|@end|@implementation|@protocol|@class|@public|@protected|@private|@property|@try|@catch|@finally|@throw|@synthesize|@dynamic|@selector)\b/,
47
'operator': /-[->]?|\+\+?|!=?|<<?=?|>>?=?|==?|&&?|\|\|?|[~^%?*\/@]/
58
});

‎components/prism-objectivec.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
+10-7
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,15 @@
1-
''
2-
'fo\'o'
3-
'foo\
4-
bar'
1+
'a'
2+
'\n'
3+
'\000'
4+
'\x00'
5+
'\u0000'
56

67
----------------------------------------------------
78

89
[
9-
["char", "''"],
10-
["char", "'fo\\'o'"],
11-
["char", "'foo\\\r\nbar'"]
10+
["char", "'a'"],
11+
["char", "'\\n'"],
12+
["char", "'\\000'"],
13+
["char", "'\\x00'"],
14+
["char", "'\\u0000'"]
1215
]

0 commit comments

Comments
 (0)
Please sign in to comment.