mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-02-12 02:23:39 +08:00
61 lines
1.1 KiB
Plaintext
61 lines
1.1 KiB
Plaintext
|
include: SomeFile.fusion
|
||
|
//<- include
|
||
|
// ^text.uri
|
||
|
|
||
|
namespace: ns = Neos.Fusion.Space
|
||
|
//<- keyword
|
||
|
// ^namespace
|
||
|
// ^operator
|
||
|
// ^namespace
|
||
|
|
||
|
prototype(MyType) < prototype(ns:SuperType) {
|
||
|
//<-keyword
|
||
|
// ^punctuation.bracket
|
||
|
// ^type
|
||
|
// ^punctuation.bracket
|
||
|
// ^operator
|
||
|
// ^namespace
|
||
|
// ^type
|
||
|
|
||
|
deleteProp >
|
||
|
// ^operator
|
||
|
|
||
|
string = 'value'
|
||
|
//<- property
|
||
|
// ^operator
|
||
|
// ^string
|
||
|
|
||
|
number = 10.2
|
||
|
// ^number
|
||
|
|
||
|
null = null
|
||
|
// ^constant.builtin
|
||
|
|
||
|
boolean = true
|
||
|
// ^boolean
|
||
|
|
||
|
property.inner = "value"
|
||
|
//<- property
|
||
|
// ^property
|
||
|
|
||
|
property.@meta = "value"
|
||
|
//<- property
|
||
|
// ^attribute
|
||
|
|
||
|
property.type = SomeType
|
||
|
//<- property
|
||
|
// ^type
|
||
|
|
||
|
property.aliasedType = ns:SomeType
|
||
|
//<- property
|
||
|
// ^namespace
|
||
|
// ^type
|
||
|
|
||
|
property.fullQualifiedType = SomeNamespace:SomeType
|
||
|
//<- property
|
||
|
// ^namespace
|
||
|
// ^type
|
||
|
|
||
|
}
|
||
|
|