Add "open" access modifier and reorder from most to least restrictive

This commit is contained in:
Philip Turner 2021-12-26 13:50:38 -05:00 committed by GitHub
parent c31bb1eab8
commit 860d306c84
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -55,7 +55,7 @@ export const language = <languages.IMonarchLanguage>{
'@IBInspectable', '@IBInspectable',
'@IBOutlet' '@IBOutlet'
], ],
accessmodifiers: ['public', 'private', 'fileprivate', 'internal'], accessmodifiers: ['open', 'public', 'internal', 'fileprivate', 'private'],
keywords: [ keywords: [
'#available', '#available',
'#colorLiteral', '#colorLiteral',