2021-11-26 16:37:51 +01:00
|
|
|
include: SomeFile.fusion
|
|
|
|
|
//<- include
|
2021-11-26 21:22:28 +01:00
|
|
|
// ^text.uri
|
2021-11-26 16:37:51 +01:00
|
|
|
|
2021-12-05 23:26:59 +01:00
|
|
|
namespace: ns = Neos.Fusion.Space
|
2021-11-26 16:37:51 +01:00
|
|
|
//<- keyword
|
2021-12-05 23:26:59 +01:00
|
|
|
// ^namespace
|
|
|
|
|
// ^operator
|
|
|
|
|
// ^namespace
|
2021-11-26 16:37:51 +01:00
|
|
|
|
|
|
|
|
prototype(MyType) < prototype(ns:SuperType) {
|
|
|
|
|
//<-keyword
|
2021-11-26 20:08:16 +01:00
|
|
|
// ^punctuation.bracket
|
2021-11-26 16:37:51 +01:00
|
|
|
// ^type
|
2021-11-26 20:08:16 +01:00
|
|
|
// ^punctuation.bracket
|
2021-11-26 16:37:51 +01:00
|
|
|
// ^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
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|