2021-11-26 16:37:51 +01:00
|
|
|
include: SomeFile.fusion
|
2023-12-24 12:52:21 +01:00
|
|
|
//<- @include
|
|
|
|
|
// ^ @text.uri
|
2021-11-26 16:37:51 +01:00
|
|
|
|
2021-12-05 23:26:59 +01:00
|
|
|
namespace: ns = Neos.Fusion.Space
|
2023-12-24 12:52:21 +01:00
|
|
|
//<- @keyword
|
|
|
|
|
// ^ @namespace
|
|
|
|
|
// ^ @operator
|
|
|
|
|
// ^ @namespace
|
2021-11-26 16:37:51 +01:00
|
|
|
|
|
|
|
|
prototype(MyType) < prototype(ns:SuperType) {
|
|
|
|
|
//<-keyword
|
2023-12-24 12:52:21 +01:00
|
|
|
// ^ @punctuation.bracket
|
|
|
|
|
// ^ @type
|
|
|
|
|
// ^ @punctuation.bracket
|
|
|
|
|
// ^ @operator
|
|
|
|
|
// ^ @namespace
|
|
|
|
|
// ^ @type
|
2021-11-26 16:37:51 +01:00
|
|
|
|
|
|
|
|
deleteProp >
|
2023-12-24 12:52:21 +01:00
|
|
|
// ^ @operator
|
2021-11-26 16:37:51 +01:00
|
|
|
|
|
|
|
|
string = 'value'
|
2023-12-24 12:52:21 +01:00
|
|
|
//<- @property
|
|
|
|
|
// ^ @operator
|
|
|
|
|
// ^ @string
|
2021-11-26 16:37:51 +01:00
|
|
|
|
|
|
|
|
number = 10.2
|
2023-12-24 12:52:21 +01:00
|
|
|
// ^ @number
|
2021-11-26 16:37:51 +01:00
|
|
|
|
|
|
|
|
null = null
|
2023-12-24 12:52:21 +01:00
|
|
|
// ^ @constant.builtin
|
2021-11-26 16:37:51 +01:00
|
|
|
|
|
|
|
|
boolean = true
|
2023-12-24 12:52:21 +01:00
|
|
|
// ^ @boolean
|
2021-11-26 16:37:51 +01:00
|
|
|
|
|
|
|
|
property.inner = "value"
|
2023-12-24 12:52:21 +01:00
|
|
|
//<- @property
|
|
|
|
|
// ^ @property
|
2021-11-26 16:37:51 +01:00
|
|
|
|
|
|
|
|
property.@meta = "value"
|
2023-12-24 12:52:21 +01:00
|
|
|
//<- @property
|
|
|
|
|
// ^ @attribute
|
2021-11-26 16:37:51 +01:00
|
|
|
|
|
|
|
|
property.type = SomeType
|
2023-12-24 12:52:21 +01:00
|
|
|
//<- @property
|
|
|
|
|
// ^ @type
|
2021-11-26 16:37:51 +01:00
|
|
|
|
|
|
|
|
property.aliasedType = ns:SomeType
|
2023-12-24 12:52:21 +01:00
|
|
|
//<- @property
|
|
|
|
|
// ^ @namespace
|
|
|
|
|
// ^ @type
|
2021-11-26 16:37:51 +01:00
|
|
|
|
|
|
|
|
property.fullQualifiedType = SomeNamespace:SomeType
|
2023-12-24 12:52:21 +01:00
|
|
|
//<- @property
|
|
|
|
|
// ^ @namespace
|
|
|
|
|
// ^ @type
|
2021-11-26 16:37:51 +01:00
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|