File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -816,6 +816,16 @@ contexts:
816816 scope : constant.language.boolean.true.coi
817817
818818 numbers :
819+ - match : (0[bB])([01]*)
820+ scope : meta.number.integer.binary.coi
821+ captures :
822+ 1 : constant.numeric.base.coi
823+ 2 : constant.numeric.value.coi
824+ - match : (0[xX])(\h*)
825+ scope : meta.number.integer.hexadecimal.coi
826+ captures :
827+ 1 : constant.numeric.base.coi
828+ 2 : constant.numeric.value.coi
819829 - match : \d+\.\d*
820830 scope : meta.number.float.decimal.coi constant.numeric.value.coi
821831 - match : \d+
Original file line number Diff line number Diff line change 6262// ^ keyword.operator.arithmetic.coi
6363// ^^^ meta.number.float.decimal.coi constant.numeric.value.coi
6464
65+ 0b 0b0 0b11
66+ // ^^ meta.number.integer.binary.coi constant.numeric.base.coi
67+ // ^^^ meta.number.integer.binary.coi
68+ // ^^ constant.numeric.base.coi
69+ // ^ constant.numeric.value.coi
70+ // ^^^^ meta.number.integer.binary.coi
71+ // ^^ constant.numeric.base.coi
72+ // ^^ constant.numeric.value.coi
73+
74+ 0x7f 0x00 0xffff
75+ // ^^^^ meta.number.integer.hexadecimal.coi
76+ // ^^ constant.numeric.base.coi
77+ // ^^ constant.numeric.value.coi
78+ // ^^^^ meta.number.integer.hexadecimal.coi
79+ // ^^ constant.numeric.base.coi
80+ // ^^ constant.numeric.value.coi
81+ // ^^^^^^ meta.number.integer.hexadecimal.coi
82+ // ^^ constant.numeric.base.coi
83+ // ^^^^ constant.numeric.value.coi
84+
6585 // single-line strings
6686
6787 "string \""
You can’t perform that action at this time.
0 commit comments