Skip to content

Commit 5d46fc7

Browse files
committed
Remove Ul/ul number formats
These do not exist in Scala
1 parent 46b8880 commit 5d46fc7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/typescript/Scala.tmLanguage.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -191,11 +191,11 @@ export const scalaTmLanguage: TmLanguage = {
191191
name: 'constant.numeric.scala'
192192
},
193193
{
194-
match: '\\b(([0-9][0-9_]*(\\.[0-9][0-9_]*)?)([eE](\\+|-)?[0-9][0-9_]*)?|[0-9][0-9_]*)([LlFfDd]|UL|ul)?\\b',
194+
match: '\\b(([0-9][0-9_]*(\\.[0-9][0-9_]*)?)([eE](\\+|-)?[0-9][0-9_]*)?|[0-9][0-9_]*)[LlFfDd]?\\b',
195195
name: 'constant.numeric.scala'
196196
},
197197
{
198-
match: '(\\.[0-9][0-9_]*)([eE](\\+|-)?[0-9][0-9_]*)?([LlFfDd]|UL|ul)?\\b',
198+
match: '(\\.[0-9][0-9_]*)([eE](\\+|-)?[0-9][0-9_]*)?[LlFfDd]?\\b',
199199
name: 'constant.numeric.scala'
200200
},
201201
{

0 commit comments

Comments
 (0)