File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -21,6 +21,7 @@ Deprecations:
21
21
22
22
Language Improvements:
23
23
24
+ - fix(typescript) add ` readonly ` keyword (#2562 ) [ Martin (Lhoerion)] [ ]
24
25
- fix(javascript) fix regex inside parens after a non-regex (#2530 ) [ Josh Goebel] [ ]
25
26
- enh(typescript) use identifier to match potential keywords, preventing false positivites (#2519 ) [ Josh Goebel] [ ]
26
27
- enh(javascript) use identifier to match potential keywords, preventing false positivites (#2519 ) [ Josh Goebel] [ ]
@@ -49,6 +50,7 @@ Language Improvements:
49
50
[ Sam Rawlins ] : https://github.com/srawlins
50
51
[ Sergey Prokhorov ] : https://github.com/seriyps
51
52
[ Nils Knappmeier ] : https://github.com/nknapp
53
+ [ Martin (Lhoerion) ] : https://github.com/Lhoerion
52
54
53
55
54
56
## Version 10.0.2
Original file line number Diff line number Diff line change @@ -31,7 +31,8 @@ export default function(hljs) {
31
31
"protected" ,
32
32
"implements" ,
33
33
"declare" ,
34
- "abstract"
34
+ "abstract" ,
35
+ "readonly"
35
36
] ;
36
37
var KEYWORDS = {
37
38
$pattern : ECMAScript . IDENT_RE ,
You can’t perform that action at this time.
0 commit comments