File tree 2 files changed +7
-1
lines changed 2 files changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ variables:
9
9
identifier : ' (?:[[:alpha:]][_[:alnum:]]*|_[_[:alnum:]]+)'
10
10
escaped_byte : ' \\([nrt0\"'' \\]|x\h{2})'
11
11
escaped_char : ' \\([nrt0\"'' \\]|x\h{2}|u\{\h{1,6}\})'
12
- int_suffixes : ' [iu](?:8|16|32|64|size)'
12
+ int_suffixes : ' [iu](?:8|16|32|64|128| size)'
13
13
float_suffixes : ' f(32|64)'
14
14
contexts :
15
15
main :
Original file line number Diff line number Diff line change @@ -142,6 +142,12 @@ let raw_bytes = br#"This won't escape anything either \x01 \""#;
142
142
//^^^^^^^^^ constant.numeric.integer.octal
143
143
// ^^^ storage.type - constant.numeric.integer.octal
144
144
145
+ 0x12e15e35b500f16e2e714eb2b37916a5_u128 ;
146
+ // <- constant.numeric.integer.hexadecimal
147
+ // <- constant.numeric.integer.hexadecimal
148
+ //^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ constant.numeric.integer.hexadecimal
149
+ // ^^^^ storage.type - constant.numeric.integer.hexadecimal
150
+
145
151
extern crate foo;
146
152
// <- keyword.other
147
153
//^^^^ keyword.other
You can’t perform that action at this time.
0 commit comments