Merge pull request #121 from VarghaSabee/dart/safari-bug

Safari regex error fix (negative lookbehind) #2179
pull/2748/head
Alexandru Dima 4 years ago committed by GitHub
commit e62d8d0d8a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -181,7 +181,7 @@ export const language = <languages.IMonarchLanguage>{
} }
} }
], ],
[/(?<![a-zA-Z0-9_$])([_$]*[A-Z][a-zA-Z0-9_$]*)/, 'type.identifier'], // to show class names nicely [/[A-Z_$][\w\$]*/, 'type.identifier'], // show class names
// [/[A-Z][\w\$]*/, 'identifier'], // [/[A-Z][\w\$]*/, 'identifier'],
// whitespace // whitespace

Loading…
Cancel
Save