@blockml/fatblock-target 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/blocks/org/blockml/bml/target/fatblock/FatblockType.bml +33 -0
- package/blocks/org/blockml/bml/target/fatblock/Library.bml +101 -0
- package/blocks/org/blockml/bml/target/fatblock/README.bml +57 -0
- package/blocks/org/blockml/bml/target/fatblock/api/AssembleFatDocumentResult.bml +35 -0
- package/blocks/org/blockml/bml/target/fatblock/api/FatBlockOptions.bml +42 -0
- package/blocks/org/blockml/bml/target/fatblock/api/FatBlockRenderOutput.bml +36 -0
- package/blocks/org/blockml/bml/target/fatblock/capability/AssembleFatDocument.bml +54 -0
- package/blocks/org/blockml/bml/target/fatblock/capability/CloneBlockDefinition.bml +41 -0
- package/blocks/org/blockml/bml/target/fatblock/capability/CollectCandidateFqns.bml +57 -0
- package/blocks/org/blockml/bml/target/fatblock/capability/FatOutputBasename.bml +45 -0
- package/blocks/org/blockml/bml/target/fatblock/capability/FilterByIncludes.bml +48 -0
- package/blocks/org/blockml/bml/target/fatblock/capability/MatchesIncludePattern.bml +44 -0
- package/blocks/org/blockml/bml/target/fatblock/capability/MergeNamespaceBindings.bml +48 -0
- package/blocks/org/blockml/bml/target/fatblock/capability/Render.bml +49 -0
- package/blocks/org/blockml/bml/target/fatblock/capability/ResolveOptions.bml +46 -0
- package/blocks/org/blockml/bml/target/fatblock/capability/RootFqnsByFilePath.bml +45 -0
- package/blocks/org/blockml/bml/target/fatblock/capability/SerializeFatDocument.bml +48 -0
- package/blocks/org/blockml/bml/target/fatblock/capability/ValidateRequest.bml +45 -0
- package/blocks/org/blockml/bml/target/fatblock/config/DefaultFatBlockOptions.bml +35 -0
- package/blocks/org/blockml/bml/target/fatblock/config/FatBlockConstants.bml +38 -0
- package/blocks/org/blockml/bml/target/fatblock/documentation/ArchitectureOverview.bml +53 -0
- package/blocks/org/blockml/bml/target/fatblock/documentation/CandidateCollection.bml +45 -0
- package/blocks/org/blockml/bml/target/fatblock/documentation/DesignDecisions.bml +51 -0
- package/blocks/org/blockml/bml/target/fatblock/documentation/Diagnostics.bml +48 -0
- package/blocks/org/blockml/bml/target/fatblock/documentation/EmbedAssemblyRules.bml +46 -0
- package/blocks/org/blockml/bml/target/fatblock/documentation/Introduction.bml +49 -0
- package/blocks/org/blockml/bml/target/fatblock/documentation/LayerSeparation.bml +50 -0
- package/blocks/org/blockml/bml/target/fatblock/documentation/NamespaceMergeRules.bml +42 -0
- package/blocks/org/blockml/bml/target/fatblock/documentation/OutputLayout.bml +40 -0
- package/blocks/org/blockml/bml/target/fatblock/documentation/PackageOwnership.bml +47 -0
- package/blocks/org/blockml/bml/target/fatblock/documentation/PublicApi.bml +48 -0
- package/blocks/org/blockml/bml/target/fatblock/documentation/ScopeExclusions.bml +40 -0
- package/blocks/org/blockml/bml/target/fatblock/documentation/V1Scope.bml +49 -0
- package/dist/assemble-fat-document.d.ts +13 -0
- package/dist/assemble-fat-document.d.ts.map +1 -0
- package/dist/assemble-fat-document.js +110 -0
- package/dist/assemble-fat-document.js.map +1 -0
- package/dist/clone-block.d.ts +3 -0
- package/dist/clone-block.d.ts.map +1 -0
- package/dist/clone-block.js +4 -0
- package/dist/clone-block.js.map +1 -0
- package/dist/collect-candidates.d.ts +8 -0
- package/dist/collect-candidates.d.ts.map +1 -0
- package/dist/collect-candidates.js +41 -0
- package/dist/collect-candidates.js.map +1 -0
- package/dist/fat-output-path.d.ts +2 -0
- package/dist/fat-output-path.d.ts.map +1 -0
- package/dist/fat-output-path.js +9 -0
- package/dist/fat-output-path.js.map +1 -0
- package/dist/fatblock-target.d.ts +16 -0
- package/dist/fatblock-target.d.ts.map +1 -0
- package/dist/fatblock-target.js +48 -0
- package/dist/fatblock-target.js.map +1 -0
- package/dist/filter-includes.d.ts +3 -0
- package/dist/filter-includes.d.ts.map +1 -0
- package/dist/filter-includes.js +14 -0
- package/dist/filter-includes.js.map +1 -0
- package/dist/index.d.ts +9 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +9 -0
- package/dist/index.js.map +1 -0
- package/dist/merge-namespace-bindings.d.ts +10 -0
- package/dist/merge-namespace-bindings.d.ts.map +1 -0
- package/dist/merge-namespace-bindings.js +23 -0
- package/dist/merge-namespace-bindings.js.map +1 -0
- package/dist/options.d.ts +13 -0
- package/dist/options.d.ts.map +1 -0
- package/dist/options.js +13 -0
- package/dist/options.js.map +1 -0
- package/package.json +44 -0
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
<!--
|
|
2
|
+
FatBlock — FatblockType
|
|
3
|
+
FQN: org.blockml.bml.target.fatblock.FatblockType
|
|
4
|
+
-->
|
|
5
|
+
<block
|
|
6
|
+
xmlns="http://blockml.org/bml"
|
|
7
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
8
|
+
xsi:schemaLocation="http://blockml.org/bml https://blockml.org/schemas/bml.xsd
|
|
9
|
+
"
|
|
10
|
+
xmlns:blockml="org.blockml.bml"
|
|
11
|
+
xmlns:bom="org.blockml.bml.bom"
|
|
12
|
+
xmlns:bomblock="org.blockml.bml.bom.block"
|
|
13
|
+
xmlns:bomcommon="org.blockml.bml.bom.common"
|
|
14
|
+
xmlns:bomdoc="org.blockml.bml.bom.document"
|
|
15
|
+
xmlns:core="org.blockml.bml.core"
|
|
16
|
+
xmlns:def="org.blockml.bml.definition"
|
|
17
|
+
xmlns:fatblock="org.blockml.bml.target.fatblock"
|
|
18
|
+
xmlns:fbapi="org.blockml.bml.target.fatblock.api"
|
|
19
|
+
xmlns:fbcap="org.blockml.bml.target.fatblock.capability"
|
|
20
|
+
xmlns:fbconfig="org.blockml.bml.target.fatblock.config"
|
|
21
|
+
xmlns:fbdocumentation="org.blockml.bml.target.fatblock.documentation"
|
|
22
|
+
xmlns:serializer="org.blockml.bml.compiler.serializer"
|
|
23
|
+
xmlns:type="org.blockml.bml.type">
|
|
24
|
+
|
|
25
|
+
<name>FatblockType</name>
|
|
26
|
+
<type>fatblock:FatblockType</type>
|
|
27
|
+
<baseType>core:Entity</baseType>
|
|
28
|
+
<is>Abstract marker for FatBlock implementation data-structure blocks</is>
|
|
29
|
+
|
|
30
|
+
<documentation>All org.blockml.bml.target.fatblock.api|config.* types extend this marker. Distinct from bom:UrmodellType and core:Capability.</documentation>
|
|
31
|
+
<abstract>true</abstract>
|
|
32
|
+
|
|
33
|
+
</block>
|
|
@@ -0,0 +1,101 @@
|
|
|
1
|
+
<!--
|
|
2
|
+
FatBlock Render Target Library
|
|
3
|
+
FQN: org.blockml.bml.target.fatblock.Library
|
|
4
|
+
-->
|
|
5
|
+
<block
|
|
6
|
+
xmlns="http://blockml.org/bml"
|
|
7
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
8
|
+
xsi:schemaLocation="http://blockml.org/bml https://blockml.org/schemas/bml.xsd
|
|
9
|
+
"
|
|
10
|
+
xmlns:blockml="org.blockml.bml"
|
|
11
|
+
xmlns:bom="org.blockml.bml.bom"
|
|
12
|
+
xmlns:bomblock="org.blockml.bml.bom.block"
|
|
13
|
+
xmlns:bomcommon="org.blockml.bml.bom.common"
|
|
14
|
+
xmlns:bomdoc="org.blockml.bml.bom.document"
|
|
15
|
+
xmlns:core="org.blockml.bml.core"
|
|
16
|
+
xmlns:def="org.blockml.bml.definition"
|
|
17
|
+
xmlns:fatblock="org.blockml.bml.target.fatblock"
|
|
18
|
+
xmlns:fbapi="org.blockml.bml.target.fatblock.api"
|
|
19
|
+
xmlns:fbcap="org.blockml.bml.target.fatblock.capability"
|
|
20
|
+
xmlns:fbconfig="org.blockml.bml.target.fatblock.config"
|
|
21
|
+
xmlns:fbdocumentation="org.blockml.bml.target.fatblock.documentation"
|
|
22
|
+
xmlns:serializer="org.blockml.bml.compiler.serializer"
|
|
23
|
+
xmlns:type="org.blockml.bml.type">
|
|
24
|
+
|
|
25
|
+
<name>Library</name>
|
|
26
|
+
<type>fatblock:Library</type>
|
|
27
|
+
<baseType>core:BlockLibrary</baseType>
|
|
28
|
+
<is>The FatBlock portable .bml render target library catalog</is>
|
|
29
|
+
|
|
30
|
+
<documentation>
|
|
31
|
+
Canonical FatBlock specification for BlockML — registry name fatblock, folder-pool
|
|
32
|
+
candidates, embed assembly, namespace merge, Host.fat.bml (FB1–FB20). TypeScript in
|
|
33
|
+
packages/fatblock-target/src/ implements this library. Membership is defined
|
|
34
|
+
exclusively by this blocks list.
|
|
35
|
+
</documentation>
|
|
36
|
+
|
|
37
|
+
<version>0.1.0</version>
|
|
38
|
+
|
|
39
|
+
<language>
|
|
40
|
+
<English />
|
|
41
|
+
</language>
|
|
42
|
+
|
|
43
|
+
<properties>
|
|
44
|
+
<description>
|
|
45
|
+
<value>FatBlock render target library</value>
|
|
46
|
+
</description>
|
|
47
|
+
</properties>
|
|
48
|
+
|
|
49
|
+
<aggregations>
|
|
50
|
+
<readMe>
|
|
51
|
+
<composition>
|
|
52
|
+
<fatblock:README />
|
|
53
|
+
</composition>
|
|
54
|
+
</readMe>
|
|
55
|
+
<dependencies>
|
|
56
|
+
<composition>
|
|
57
|
+
<blockml:Library />
|
|
58
|
+
</composition>
|
|
59
|
+
<composition>
|
|
60
|
+
<bom:Library />
|
|
61
|
+
</composition>
|
|
62
|
+
<composition>
|
|
63
|
+
<serializer:Library />
|
|
64
|
+
</composition>
|
|
65
|
+
</dependencies>
|
|
66
|
+
<blocks>
|
|
67
|
+
<composition><fatblock:FatblockType /></composition>
|
|
68
|
+
<composition><fbapi:FatBlockOptions /></composition>
|
|
69
|
+
<composition><fbapi:FatBlockRenderOutput /></composition>
|
|
70
|
+
<composition><fbapi:AssembleFatDocumentResult /></composition>
|
|
71
|
+
<composition><fbconfig:FatBlockConstants /></composition>
|
|
72
|
+
<composition><fbconfig:DefaultFatBlockOptions /></composition>
|
|
73
|
+
<composition><fbcap:ResolveOptions /></composition>
|
|
74
|
+
<composition><fbcap:ValidateRequest /></composition>
|
|
75
|
+
<composition><fbcap:Render /></composition>
|
|
76
|
+
<composition><fbcap:RootFqnsByFilePath /></composition>
|
|
77
|
+
<composition><fbcap:CollectCandidateFqns /></composition>
|
|
78
|
+
<composition><fbcap:MatchesIncludePattern /></composition>
|
|
79
|
+
<composition><fbcap:FilterByIncludes /></composition>
|
|
80
|
+
<composition><fbcap:CloneBlockDefinition /></composition>
|
|
81
|
+
<composition><fbcap:MergeNamespaceBindings /></composition>
|
|
82
|
+
<composition><fbcap:AssembleFatDocument /></composition>
|
|
83
|
+
<composition><fbcap:SerializeFatDocument /></composition>
|
|
84
|
+
<composition><fbcap:FatOutputBasename /></composition>
|
|
85
|
+
<composition><fbdocumentation:Introduction /></composition>
|
|
86
|
+
<composition><fbdocumentation:LayerSeparation /></composition>
|
|
87
|
+
<composition><fbdocumentation:ArchitectureOverview /></composition>
|
|
88
|
+
<composition><fbdocumentation:V1Scope /></composition>
|
|
89
|
+
<composition><fbdocumentation:PublicApi /></composition>
|
|
90
|
+
<composition><fbdocumentation:CandidateCollection /></composition>
|
|
91
|
+
<composition><fbdocumentation:EmbedAssemblyRules /></composition>
|
|
92
|
+
<composition><fbdocumentation:NamespaceMergeRules /></composition>
|
|
93
|
+
<composition><fbdocumentation:OutputLayout /></composition>
|
|
94
|
+
<composition><fbdocumentation:Diagnostics /></composition>
|
|
95
|
+
<composition><fbdocumentation:DesignDecisions /></composition>
|
|
96
|
+
<composition><fbdocumentation:PackageOwnership /></composition>
|
|
97
|
+
<composition><fbdocumentation:ScopeExclusions /></composition>
|
|
98
|
+
</blocks>
|
|
99
|
+
</aggregations>
|
|
100
|
+
|
|
101
|
+
</block>
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
<!--
|
|
2
|
+
FatBlock Render Target — README
|
|
3
|
+
FQN: org.blockml.bml.target.fatblock.README
|
|
4
|
+
-->
|
|
5
|
+
<block
|
|
6
|
+
xmlns="http://blockml.org/bml"
|
|
7
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
8
|
+
xsi:schemaLocation="http://blockml.org/bml https://blockml.org/schemas/bml.xsd
|
|
9
|
+
"
|
|
10
|
+
xmlns:blockml="org.blockml.bml"
|
|
11
|
+
xmlns:bom="org.blockml.bml.bom"
|
|
12
|
+
xmlns:bomblock="org.blockml.bml.bom.block"
|
|
13
|
+
xmlns:bomcommon="org.blockml.bml.bom.common"
|
|
14
|
+
xmlns:bomdoc="org.blockml.bml.bom.document"
|
|
15
|
+
xmlns:core="org.blockml.bml.core"
|
|
16
|
+
xmlns:def="org.blockml.bml.definition"
|
|
17
|
+
xmlns:fatblock="org.blockml.bml.target.fatblock"
|
|
18
|
+
xmlns:fbapi="org.blockml.bml.target.fatblock.api"
|
|
19
|
+
xmlns:fbcap="org.blockml.bml.target.fatblock.capability"
|
|
20
|
+
xmlns:fbconfig="org.blockml.bml.target.fatblock.config"
|
|
21
|
+
xmlns:fbdocumentation="org.blockml.bml.target.fatblock.documentation"
|
|
22
|
+
xmlns:serializer="org.blockml.bml.compiler.serializer"
|
|
23
|
+
xmlns:type="org.blockml.bml.type">
|
|
24
|
+
|
|
25
|
+
<name>README</name>
|
|
26
|
+
<type>fatblock:README</type>
|
|
27
|
+
<baseType>core:ReadMe</baseType>
|
|
28
|
+
<is>Reading entry for the FatBlock render target library</is>
|
|
29
|
+
|
|
30
|
+
<documentation>
|
|
31
|
+
The @blockml/fatblock-target package implements RenderTarget name fatblock.
|
|
32
|
+
This library (org.blockml.bml.target.fatblock.*) is the SSOT; TypeScript in
|
|
33
|
+
packages/fatblock-target/src/ implements it. Tests in packages/fatblock-target/test/
|
|
34
|
+
verify behavioral contracts.
|
|
35
|
+
|
|
36
|
+
Start reading at org.blockml.bml.target.fatblock.documentation.Introduction (ReadNext chain).
|
|
37
|
+
|
|
38
|
+
V1: folder-bundle document target — host .bml plus peer roots under --src into one
|
|
39
|
+
Host.fat.bml with flat embeddedBlocks. Transitive closure is planned for v2.
|
|
40
|
+
|
|
41
|
+
Layer separation:
|
|
42
|
+
• org.blockml.bml.bom.* — embeddedBlocks meta-model
|
|
43
|
+
• org.blockml.bml.target.fatblock.* (this library) — assemble / merge / emit
|
|
44
|
+
• org.blockml.bml.compiler.serializer.* — XML serialization
|
|
45
|
+
• org.blockml.bml.cli.* — host flags and file writing
|
|
46
|
+
|
|
47
|
+
Modules: documentation, api/config, capability.
|
|
48
|
+
</documentation>
|
|
49
|
+
|
|
50
|
+
<references>
|
|
51
|
+
<see type="fbdocumentation:Introduction" relation="ReadFirst" />
|
|
52
|
+
<see type="fbdocumentation:DesignDecisions" relation="SeeAlso" />
|
|
53
|
+
<see type="fbdocumentation:PublicApi" relation="SeeAlso" />
|
|
54
|
+
<see type="fbcap:Render" relation="SeeAlso" />
|
|
55
|
+
</references>
|
|
56
|
+
|
|
57
|
+
</block>
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
<!--
|
|
2
|
+
FatBlock API — AssembleFatDocumentResult
|
|
3
|
+
FQN: org.blockml.bml.target.fatblock.api.AssembleFatDocumentResult
|
|
4
|
+
-->
|
|
5
|
+
<block
|
|
6
|
+
xmlns="http://blockml.org/bml"
|
|
7
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
8
|
+
xsi:schemaLocation="http://blockml.org/bml https://blockml.org/schemas/bml.xsd
|
|
9
|
+
"
|
|
10
|
+
xmlns:blockml="org.blockml.bml"
|
|
11
|
+
xmlns:bom="org.blockml.bml.bom"
|
|
12
|
+
xmlns:bomblock="org.blockml.bml.bom.block"
|
|
13
|
+
xmlns:bomcommon="org.blockml.bml.bom.common"
|
|
14
|
+
xmlns:bomdoc="org.blockml.bml.bom.document"
|
|
15
|
+
xmlns:core="org.blockml.bml.core"
|
|
16
|
+
xmlns:def="org.blockml.bml.definition"
|
|
17
|
+
xmlns:fatblock="org.blockml.bml.target.fatblock"
|
|
18
|
+
xmlns:fbapi="org.blockml.bml.target.fatblock.api"
|
|
19
|
+
xmlns:fbcap="org.blockml.bml.target.fatblock.capability"
|
|
20
|
+
xmlns:fbconfig="org.blockml.bml.target.fatblock.config"
|
|
21
|
+
xmlns:fbdocumentation="org.blockml.bml.target.fatblock.documentation"
|
|
22
|
+
xmlns:serializer="org.blockml.bml.compiler.serializer"
|
|
23
|
+
xmlns:type="org.blockml.bml.type">
|
|
24
|
+
|
|
25
|
+
<name>AssembleFatDocumentResult</name>
|
|
26
|
+
<type>fbapi:AssembleFatDocumentResult</type>
|
|
27
|
+
<baseType>fatblock:FatblockType</baseType>
|
|
28
|
+
<is>Result of assembleFatDocument</is>
|
|
29
|
+
|
|
30
|
+
<properties>
|
|
31
|
+
<document type="bomdoc:BomDocument"><documentation>Assembled fat BomDocument or null on error. (optional)</documentation></document>
|
|
32
|
+
<diagnostics type="type:Text"><documentation>Error diagnostics collected during assemble. (required)</documentation></diagnostics>
|
|
33
|
+
</properties>
|
|
34
|
+
|
|
35
|
+
</block>
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
<!--
|
|
2
|
+
FatBlock API — FatBlockOptions
|
|
3
|
+
FQN: org.blockml.bml.target.fatblock.api.FatBlockOptions
|
|
4
|
+
-->
|
|
5
|
+
<block
|
|
6
|
+
xmlns="http://blockml.org/bml"
|
|
7
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
8
|
+
xsi:schemaLocation="http://blockml.org/bml https://blockml.org/schemas/bml.xsd
|
|
9
|
+
"
|
|
10
|
+
xmlns:blockml="org.blockml.bml"
|
|
11
|
+
xmlns:bom="org.blockml.bml.bom"
|
|
12
|
+
xmlns:bomblock="org.blockml.bml.bom.block"
|
|
13
|
+
xmlns:bomcommon="org.blockml.bml.bom.common"
|
|
14
|
+
xmlns:bomdoc="org.blockml.bml.bom.document"
|
|
15
|
+
xmlns:core="org.blockml.bml.core"
|
|
16
|
+
xmlns:def="org.blockml.bml.definition"
|
|
17
|
+
xmlns:fatblock="org.blockml.bml.target.fatblock"
|
|
18
|
+
xmlns:fbapi="org.blockml.bml.target.fatblock.api"
|
|
19
|
+
xmlns:fbcap="org.blockml.bml.target.fatblock.capability"
|
|
20
|
+
xmlns:fbconfig="org.blockml.bml.target.fatblock.config"
|
|
21
|
+
xmlns:fbdocumentation="org.blockml.bml.target.fatblock.documentation"
|
|
22
|
+
xmlns:serializer="org.blockml.bml.compiler.serializer"
|
|
23
|
+
xmlns:type="org.blockml.bml.type">
|
|
24
|
+
|
|
25
|
+
<name>FatBlockOptions</name>
|
|
26
|
+
<type>fbapi:FatBlockOptions</type>
|
|
27
|
+
<baseType>fatblock:FatblockType</baseType>
|
|
28
|
+
<is>Opaque targetOptions payload for registry name fatblock</is>
|
|
29
|
+
|
|
30
|
+
<documentation>FB1: Defaults embeddedBlocksStrategy=error. srcDir required at validate/render (CLI --src). include optional FQN filters.</documentation>
|
|
31
|
+
<references>
|
|
32
|
+
<see type="fbdocumentation:PublicApi" relation="SeeAlso" />
|
|
33
|
+
<see type="fbcap:ResolveOptions" relation="SeeAlso" />
|
|
34
|
+
</references>
|
|
35
|
+
<properties>
|
|
36
|
+
<srcDir type="type:Text"><documentation>Corpus pool root — required for v1 collection. (optional until validate)</documentation></srcDir>
|
|
37
|
+
<rootDir type="type:Text"><documentation>Project root for resolving srcDir. Default process.cwd() in render. (optional)</documentation></rootDir>
|
|
38
|
+
<include type="type:Text"><documentation>FQN filters: exact or prefix* globs. Empty/omitted = all peers under srcDir. (optional)</documentation></include>
|
|
39
|
+
<embeddedBlocksStrategy type="type:Text"><documentation>v1 only "error". Reserved; assemble hardcodes empty-embeds check. (optional)</documentation></embeddedBlocksStrategy>
|
|
40
|
+
</properties>
|
|
41
|
+
|
|
42
|
+
</block>
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
<!--
|
|
2
|
+
FatBlock API — FatBlockRenderOutput
|
|
3
|
+
FQN: org.blockml.bml.target.fatblock.api.FatBlockRenderOutput
|
|
4
|
+
-->
|
|
5
|
+
<block
|
|
6
|
+
xmlns="http://blockml.org/bml"
|
|
7
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
8
|
+
xsi:schemaLocation="http://blockml.org/bml https://blockml.org/schemas/bml.xsd
|
|
9
|
+
"
|
|
10
|
+
xmlns:blockml="org.blockml.bml"
|
|
11
|
+
xmlns:bom="org.blockml.bml.bom"
|
|
12
|
+
xmlns:bomblock="org.blockml.bml.bom.block"
|
|
13
|
+
xmlns:bomcommon="org.blockml.bml.bom.common"
|
|
14
|
+
xmlns:bomdoc="org.blockml.bml.bom.document"
|
|
15
|
+
xmlns:core="org.blockml.bml.core"
|
|
16
|
+
xmlns:def="org.blockml.bml.definition"
|
|
17
|
+
xmlns:fatblock="org.blockml.bml.target.fatblock"
|
|
18
|
+
xmlns:fbapi="org.blockml.bml.target.fatblock.api"
|
|
19
|
+
xmlns:fbcap="org.blockml.bml.target.fatblock.capability"
|
|
20
|
+
xmlns:fbconfig="org.blockml.bml.target.fatblock.config"
|
|
21
|
+
xmlns:fbdocumentation="org.blockml.bml.target.fatblock.documentation"
|
|
22
|
+
xmlns:serializer="org.blockml.bml.compiler.serializer"
|
|
23
|
+
xmlns:type="org.blockml.bml.type">
|
|
24
|
+
|
|
25
|
+
<name>FatBlockRenderOutput</name>
|
|
26
|
+
<type>fbapi:FatBlockRenderOutput</type>
|
|
27
|
+
<baseType>fatblock:FatblockType</baseType>
|
|
28
|
+
<is>Single-file fat .bml RenderOutput with diagnostics</is>
|
|
29
|
+
|
|
30
|
+
<documentation>files[] typically one Host.fat.bml entry. diagnostics optional; info severity stripped on success path.</documentation>
|
|
31
|
+
<properties>
|
|
32
|
+
<files type="type:Text"><documentation>Array of { path, content }. (required)</documentation></files>
|
|
33
|
+
<diagnostics type="type:Text"><documentation>Diagnostic list from assemble and serialize. (optional)</documentation></diagnostics>
|
|
34
|
+
</properties>
|
|
35
|
+
|
|
36
|
+
</block>
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
<!--
|
|
2
|
+
FatBlock Capability — AssembleFatDocument
|
|
3
|
+
FQN: org.blockml.bml.target.fatblock.capability.AssembleFatDocument
|
|
4
|
+
-->
|
|
5
|
+
<block
|
|
6
|
+
xmlns="http://blockml.org/bml"
|
|
7
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
8
|
+
xsi:schemaLocation="http://blockml.org/bml https://blockml.org/schemas/bml.xsd
|
|
9
|
+
"
|
|
10
|
+
xmlns:blockml="org.blockml.bml"
|
|
11
|
+
xmlns:bom="org.blockml.bml.bom"
|
|
12
|
+
xmlns:bomblock="org.blockml.bml.bom.block"
|
|
13
|
+
xmlns:bomcommon="org.blockml.bml.bom.common"
|
|
14
|
+
xmlns:bomdoc="org.blockml.bml.bom.document"
|
|
15
|
+
xmlns:core="org.blockml.bml.core"
|
|
16
|
+
xmlns:def="org.blockml.bml.definition"
|
|
17
|
+
xmlns:fatblock="org.blockml.bml.target.fatblock"
|
|
18
|
+
xmlns:fbapi="org.blockml.bml.target.fatblock.api"
|
|
19
|
+
xmlns:fbcap="org.blockml.bml.target.fatblock.capability"
|
|
20
|
+
xmlns:fbconfig="org.blockml.bml.target.fatblock.config"
|
|
21
|
+
xmlns:fbdocumentation="org.blockml.bml.target.fatblock.documentation"
|
|
22
|
+
xmlns:serializer="org.blockml.bml.compiler.serializer"
|
|
23
|
+
xmlns:type="org.blockml.bml.type">
|
|
24
|
+
|
|
25
|
+
<name>AssembleFatDocument</name>
|
|
26
|
+
<type>fbcap:AssembleFatDocument</type>
|
|
27
|
+
<baseType>core:Capability</baseType>
|
|
28
|
+
<is>Build fat BomDocument from host plus peer embeds</is>
|
|
29
|
+
|
|
30
|
+
<documentation>FB12: require srcDir. FB13: host not found to BML_FATBLOCK_HOST_NOT_FOUND. FB14: host embeddedBlocks non-empty to BML_FATBLOCK_HOST_HAS_EMBEDDED_BLOCKS. FB15: duplicate candidate FQN to BML_DUPLICATE_EMBEDDED_BLOCK. FB16: embed not root / missing to BML_FATBLOCK_EMBED_NOT_FOUND; embed already has embeds to BML_FATBLOCK_EMBED_HAS_EMBEDDED_BLOCKS. FB17: clone embed, clear nested embeds, preserve subBlocks; sorted embed order; merge NS; abort if any error.</documentation>
|
|
31
|
+
|
|
32
|
+
<references>
|
|
33
|
+
<see type="fbdocumentation:EmbedAssemblyRules" relation="SeeAlso" />
|
|
34
|
+
</references>
|
|
35
|
+
|
|
36
|
+
<properties>
|
|
37
|
+
<typeRegistry type="type:Text">
|
|
38
|
+
<documentation>TypeRegistry. (required)</documentation>
|
|
39
|
+
</typeRegistry>
|
|
40
|
+
<hostFilePath type="type:Text">
|
|
41
|
+
<documentation>Host .bml path. (required)</documentation>
|
|
42
|
+
</hostFilePath>
|
|
43
|
+
<options type="fbapi:FatBlockOptions">
|
|
44
|
+
<documentation>Resolved options. (required)</documentation>
|
|
45
|
+
</options>
|
|
46
|
+
<rootDir type="type:Text">
|
|
47
|
+
<documentation>Project root. (required)</documentation>
|
|
48
|
+
</rootDir>
|
|
49
|
+
<result type="fbapi:AssembleFatDocumentResult">
|
|
50
|
+
<documentation>document and diagnostics. (required)</documentation>
|
|
51
|
+
</result>
|
|
52
|
+
</properties>
|
|
53
|
+
|
|
54
|
+
</block>
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
<!--
|
|
2
|
+
FatBlock Capability — CloneBlockDefinition
|
|
3
|
+
FQN: org.blockml.bml.target.fatblock.capability.CloneBlockDefinition
|
|
4
|
+
-->
|
|
5
|
+
<block
|
|
6
|
+
xmlns="http://blockml.org/bml"
|
|
7
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
8
|
+
xsi:schemaLocation="http://blockml.org/bml https://blockml.org/schemas/bml.xsd
|
|
9
|
+
"
|
|
10
|
+
xmlns:blockml="org.blockml.bml"
|
|
11
|
+
xmlns:bom="org.blockml.bml.bom"
|
|
12
|
+
xmlns:bomblock="org.blockml.bml.bom.block"
|
|
13
|
+
xmlns:bomcommon="org.blockml.bml.bom.common"
|
|
14
|
+
xmlns:bomdoc="org.blockml.bml.bom.document"
|
|
15
|
+
xmlns:core="org.blockml.bml.core"
|
|
16
|
+
xmlns:def="org.blockml.bml.definition"
|
|
17
|
+
xmlns:fatblock="org.blockml.bml.target.fatblock"
|
|
18
|
+
xmlns:fbapi="org.blockml.bml.target.fatblock.api"
|
|
19
|
+
xmlns:fbcap="org.blockml.bml.target.fatblock.capability"
|
|
20
|
+
xmlns:fbconfig="org.blockml.bml.target.fatblock.config"
|
|
21
|
+
xmlns:fbdocumentation="org.blockml.bml.target.fatblock.documentation"
|
|
22
|
+
xmlns:serializer="org.blockml.bml.compiler.serializer"
|
|
23
|
+
xmlns:type="org.blockml.bml.type">
|
|
24
|
+
|
|
25
|
+
<name>CloneBlockDefinition</name>
|
|
26
|
+
<type>fbcap:CloneBlockDefinition</type>
|
|
27
|
+
<baseType>core:Capability</baseType>
|
|
28
|
+
<is>Deep-clone a BlockDefinition</is>
|
|
29
|
+
|
|
30
|
+
<documentation>FB8: structuredClone(block) for isolation before mutating embeddedBlocks.</documentation>
|
|
31
|
+
|
|
32
|
+
<properties>
|
|
33
|
+
<block type="bomblock:BlockDefinition">
|
|
34
|
+
<documentation>Source block. (required)</documentation>
|
|
35
|
+
</block>
|
|
36
|
+
<result type="bomblock:BlockDefinition">
|
|
37
|
+
<documentation>Cloned block. (required)</documentation>
|
|
38
|
+
</result>
|
|
39
|
+
</properties>
|
|
40
|
+
|
|
41
|
+
</block>
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
<!--
|
|
2
|
+
FatBlock Capability — CollectCandidateFqns
|
|
3
|
+
FQN: org.blockml.bml.target.fatblock.capability.CollectCandidateFqns
|
|
4
|
+
-->
|
|
5
|
+
<block
|
|
6
|
+
xmlns="http://blockml.org/bml"
|
|
7
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
8
|
+
xsi:schemaLocation="http://blockml.org/bml https://blockml.org/schemas/bml.xsd
|
|
9
|
+
"
|
|
10
|
+
xmlns:blockml="org.blockml.bml"
|
|
11
|
+
xmlns:bom="org.blockml.bml.bom"
|
|
12
|
+
xmlns:bomblock="org.blockml.bml.bom.block"
|
|
13
|
+
xmlns:bomcommon="org.blockml.bml.bom.common"
|
|
14
|
+
xmlns:bomdoc="org.blockml.bml.bom.document"
|
|
15
|
+
xmlns:core="org.blockml.bml.core"
|
|
16
|
+
xmlns:def="org.blockml.bml.definition"
|
|
17
|
+
xmlns:fatblock="org.blockml.bml.target.fatblock"
|
|
18
|
+
xmlns:fbapi="org.blockml.bml.target.fatblock.api"
|
|
19
|
+
xmlns:fbcap="org.blockml.bml.target.fatblock.capability"
|
|
20
|
+
xmlns:fbconfig="org.blockml.bml.target.fatblock.config"
|
|
21
|
+
xmlns:fbdocumentation="org.blockml.bml.target.fatblock.documentation"
|
|
22
|
+
xmlns:serializer="org.blockml.bml.compiler.serializer"
|
|
23
|
+
xmlns:type="org.blockml.bml.type">
|
|
24
|
+
|
|
25
|
+
<name>CollectCandidateFqns</name>
|
|
26
|
+
<type>fbcap:CollectCandidateFqns</type>
|
|
27
|
+
<baseType>core:Capability</baseType>
|
|
28
|
+
<is>Collect peer root FQNs under srcDir excluding host</is>
|
|
29
|
+
|
|
30
|
+
<documentation>FB6: absSrc = resolve(rootDir, srcDir); keep roots under absSrc; exclude host FQN; sort ascending; if include non-empty apply FilterByIncludes.</documentation>
|
|
31
|
+
|
|
32
|
+
<references>
|
|
33
|
+
<see type="fbdocumentation:CandidateCollection" relation="SeeAlso" />
|
|
34
|
+
</references>
|
|
35
|
+
|
|
36
|
+
<properties>
|
|
37
|
+
<typeRegistry type="type:Text">
|
|
38
|
+
<documentation>TypeRegistry. (required)</documentation>
|
|
39
|
+
</typeRegistry>
|
|
40
|
+
<srcDir type="type:Text">
|
|
41
|
+
<documentation>Corpus pool. (required)</documentation>
|
|
42
|
+
</srcDir>
|
|
43
|
+
<rootDir type="type:Text">
|
|
44
|
+
<documentation>Resolution root. (required)</documentation>
|
|
45
|
+
</rootDir>
|
|
46
|
+
<hostFqn type="type:Text">
|
|
47
|
+
<documentation>Host block FQN to exclude. (required)</documentation>
|
|
48
|
+
</hostFqn>
|
|
49
|
+
<include type="type:Text">
|
|
50
|
+
<documentation>Optional include patterns. (optional)</documentation>
|
|
51
|
+
</include>
|
|
52
|
+
<result type="type:Text">
|
|
53
|
+
<documentation>Sorted candidate FQN list. (required)</documentation>
|
|
54
|
+
</result>
|
|
55
|
+
</properties>
|
|
56
|
+
|
|
57
|
+
</block>
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
<!--
|
|
2
|
+
FatBlock Capability — FatOutputBasename
|
|
3
|
+
FQN: org.blockml.bml.target.fatblock.capability.FatOutputBasename
|
|
4
|
+
-->
|
|
5
|
+
<block
|
|
6
|
+
xmlns="http://blockml.org/bml"
|
|
7
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
8
|
+
xsi:schemaLocation="http://blockml.org/bml https://blockml.org/schemas/bml.xsd
|
|
9
|
+
"
|
|
10
|
+
xmlns:blockml="org.blockml.bml"
|
|
11
|
+
xmlns:bom="org.blockml.bml.bom"
|
|
12
|
+
xmlns:bomblock="org.blockml.bml.bom.block"
|
|
13
|
+
xmlns:bomcommon="org.blockml.bml.bom.common"
|
|
14
|
+
xmlns:bomdoc="org.blockml.bml.bom.document"
|
|
15
|
+
xmlns:core="org.blockml.bml.core"
|
|
16
|
+
xmlns:def="org.blockml.bml.definition"
|
|
17
|
+
xmlns:fatblock="org.blockml.bml.target.fatblock"
|
|
18
|
+
xmlns:fbapi="org.blockml.bml.target.fatblock.api"
|
|
19
|
+
xmlns:fbcap="org.blockml.bml.target.fatblock.capability"
|
|
20
|
+
xmlns:fbconfig="org.blockml.bml.target.fatblock.config"
|
|
21
|
+
xmlns:fbdocumentation="org.blockml.bml.target.fatblock.documentation"
|
|
22
|
+
xmlns:serializer="org.blockml.bml.compiler.serializer"
|
|
23
|
+
xmlns:type="org.blockml.bml.type">
|
|
24
|
+
|
|
25
|
+
<name>FatOutputBasename</name>
|
|
26
|
+
<type>fbcap:FatOutputBasename</type>
|
|
27
|
+
<baseType>core:Capability</baseType>
|
|
28
|
+
<is>Derive output filename from host path</is>
|
|
29
|
+
|
|
30
|
+
<documentation>FB18: if basename ends with .bml, replace with .fat.bml; else append .fat.bml. Example Host.bml to Host.fat.bml.</documentation>
|
|
31
|
+
|
|
32
|
+
<references>
|
|
33
|
+
<see type="fbdocumentation:OutputLayout" relation="SeeAlso" />
|
|
34
|
+
</references>
|
|
35
|
+
|
|
36
|
+
<properties>
|
|
37
|
+
<hostFilePath type="type:Text">
|
|
38
|
+
<documentation>Host file path. (required)</documentation>
|
|
39
|
+
</hostFilePath>
|
|
40
|
+
<result type="type:Text">
|
|
41
|
+
<documentation>Output basename. (required)</documentation>
|
|
42
|
+
</result>
|
|
43
|
+
</properties>
|
|
44
|
+
|
|
45
|
+
</block>
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
<!--
|
|
2
|
+
FatBlock Capability — FilterByIncludes
|
|
3
|
+
FQN: org.blockml.bml.target.fatblock.capability.FilterByIncludes
|
|
4
|
+
-->
|
|
5
|
+
<block
|
|
6
|
+
xmlns="http://blockml.org/bml"
|
|
7
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
8
|
+
xsi:schemaLocation="http://blockml.org/bml https://blockml.org/schemas/bml.xsd
|
|
9
|
+
"
|
|
10
|
+
xmlns:blockml="org.blockml.bml"
|
|
11
|
+
xmlns:bom="org.blockml.bml.bom"
|
|
12
|
+
xmlns:bomblock="org.blockml.bml.bom.block"
|
|
13
|
+
xmlns:bomcommon="org.blockml.bml.bom.common"
|
|
14
|
+
xmlns:bomdoc="org.blockml.bml.bom.document"
|
|
15
|
+
xmlns:core="org.blockml.bml.core"
|
|
16
|
+
xmlns:def="org.blockml.bml.definition"
|
|
17
|
+
xmlns:fatblock="org.blockml.bml.target.fatblock"
|
|
18
|
+
xmlns:fbapi="org.blockml.bml.target.fatblock.api"
|
|
19
|
+
xmlns:fbcap="org.blockml.bml.target.fatblock.capability"
|
|
20
|
+
xmlns:fbconfig="org.blockml.bml.target.fatblock.config"
|
|
21
|
+
xmlns:fbdocumentation="org.blockml.bml.target.fatblock.documentation"
|
|
22
|
+
xmlns:serializer="org.blockml.bml.compiler.serializer"
|
|
23
|
+
xmlns:type="org.blockml.bml.type">
|
|
24
|
+
|
|
25
|
+
<name>FilterByIncludes</name>
|
|
26
|
+
<type>fbcap:FilterByIncludes</type>
|
|
27
|
+
<baseType>core:Capability</baseType>
|
|
28
|
+
<is>Filter FQN list by include patterns</is>
|
|
29
|
+
|
|
30
|
+
<documentation>FB7: empty/omitted patterns keep all; otherwise OR across patterns via MatchesIncludePattern.</documentation>
|
|
31
|
+
|
|
32
|
+
<references>
|
|
33
|
+
<see type="fbdocumentation:CandidateCollection" relation="SeeAlso" />
|
|
34
|
+
</references>
|
|
35
|
+
|
|
36
|
+
<properties>
|
|
37
|
+
<fqns type="type:Text">
|
|
38
|
+
<documentation>Candidate list. (required)</documentation>
|
|
39
|
+
</fqns>
|
|
40
|
+
<patterns type="type:Text">
|
|
41
|
+
<documentation>Include patterns. (optional)</documentation>
|
|
42
|
+
</patterns>
|
|
43
|
+
<result type="type:Text">
|
|
44
|
+
<documentation>Filtered FQN list. (required)</documentation>
|
|
45
|
+
</result>
|
|
46
|
+
</properties>
|
|
47
|
+
|
|
48
|
+
</block>
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
<!--
|
|
2
|
+
FatBlock Capability — MatchesIncludePattern
|
|
3
|
+
FQN: org.blockml.bml.target.fatblock.capability.MatchesIncludePattern
|
|
4
|
+
-->
|
|
5
|
+
<block
|
|
6
|
+
xmlns="http://blockml.org/bml"
|
|
7
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
8
|
+
xsi:schemaLocation="http://blockml.org/bml https://blockml.org/schemas/bml.xsd
|
|
9
|
+
"
|
|
10
|
+
xmlns:blockml="org.blockml.bml"
|
|
11
|
+
xmlns:bom="org.blockml.bml.bom"
|
|
12
|
+
xmlns:bomblock="org.blockml.bml.bom.block"
|
|
13
|
+
xmlns:bomcommon="org.blockml.bml.bom.common"
|
|
14
|
+
xmlns:bomdoc="org.blockml.bml.bom.document"
|
|
15
|
+
xmlns:core="org.blockml.bml.core"
|
|
16
|
+
xmlns:def="org.blockml.bml.definition"
|
|
17
|
+
xmlns:fatblock="org.blockml.bml.target.fatblock"
|
|
18
|
+
xmlns:fbapi="org.blockml.bml.target.fatblock.api"
|
|
19
|
+
xmlns:fbcap="org.blockml.bml.target.fatblock.capability"
|
|
20
|
+
xmlns:fbconfig="org.blockml.bml.target.fatblock.config"
|
|
21
|
+
xmlns:fbdocumentation="org.blockml.bml.target.fatblock.documentation"
|
|
22
|
+
xmlns:serializer="org.blockml.bml.compiler.serializer"
|
|
23
|
+
xmlns:type="org.blockml.bml.type">
|
|
24
|
+
|
|
25
|
+
<name>MatchesIncludePattern</name>
|
|
26
|
+
<type>fbcap:MatchesIncludePattern</type>
|
|
27
|
+
<baseType>core:Capability</baseType>
|
|
28
|
+
<is>Test one FQN against one include pattern</is>
|
|
29
|
+
|
|
30
|
+
<documentation>FB7: pattern ending with * is prefix match; else exact equality. Pattern trimmed.</documentation>
|
|
31
|
+
|
|
32
|
+
<properties>
|
|
33
|
+
<fqn type="type:Text">
|
|
34
|
+
<documentation>Candidate FQN. (required)</documentation>
|
|
35
|
+
</fqn>
|
|
36
|
+
<pattern type="type:Text">
|
|
37
|
+
<documentation>Exact or prefix* pattern. (required)</documentation>
|
|
38
|
+
</pattern>
|
|
39
|
+
<result type="type:Boolean">
|
|
40
|
+
<documentation>true if matches. (required)</documentation>
|
|
41
|
+
</result>
|
|
42
|
+
</properties>
|
|
43
|
+
|
|
44
|
+
</block>
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
<!--
|
|
2
|
+
FatBlock Capability — MergeNamespaceBindings
|
|
3
|
+
FQN: org.blockml.bml.target.fatblock.capability.MergeNamespaceBindings
|
|
4
|
+
-->
|
|
5
|
+
<block
|
|
6
|
+
xmlns="http://blockml.org/bml"
|
|
7
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
8
|
+
xsi:schemaLocation="http://blockml.org/bml https://blockml.org/schemas/bml.xsd
|
|
9
|
+
"
|
|
10
|
+
xmlns:blockml="org.blockml.bml"
|
|
11
|
+
xmlns:bom="org.blockml.bml.bom"
|
|
12
|
+
xmlns:bomblock="org.blockml.bml.bom.block"
|
|
13
|
+
xmlns:bomcommon="org.blockml.bml.bom.common"
|
|
14
|
+
xmlns:bomdoc="org.blockml.bml.bom.document"
|
|
15
|
+
xmlns:core="org.blockml.bml.core"
|
|
16
|
+
xmlns:def="org.blockml.bml.definition"
|
|
17
|
+
xmlns:fatblock="org.blockml.bml.target.fatblock"
|
|
18
|
+
xmlns:fbapi="org.blockml.bml.target.fatblock.api"
|
|
19
|
+
xmlns:fbcap="org.blockml.bml.target.fatblock.capability"
|
|
20
|
+
xmlns:fbconfig="org.blockml.bml.target.fatblock.config"
|
|
21
|
+
xmlns:fbdocumentation="org.blockml.bml.target.fatblock.documentation"
|
|
22
|
+
xmlns:serializer="org.blockml.bml.compiler.serializer"
|
|
23
|
+
xmlns:type="org.blockml.bml.type">
|
|
24
|
+
|
|
25
|
+
<name>MergeNamespaceBindings</name>
|
|
26
|
+
<type>fbcap:MergeNamespaceBindings</type>
|
|
27
|
+
<baseType>core:Capability</baseType>
|
|
28
|
+
<is>Union namespace prefix to URI maps</is>
|
|
29
|
+
|
|
30
|
+
<documentation>FB9: process sources in order (host then embeds). FB10: same prefix different URI yields BML_NAMESPACE_PREFIX_COLLISION. FB11: missing bindings default empty prefix to http://blockml.org/bml. First writer wins for new prefixes.</documentation>
|
|
31
|
+
|
|
32
|
+
<references>
|
|
33
|
+
<see type="fbdocumentation:NamespaceMergeRules" relation="SeeAlso" />
|
|
34
|
+
</references>
|
|
35
|
+
|
|
36
|
+
<properties>
|
|
37
|
+
<sources type="type:Text">
|
|
38
|
+
<documentation>Ordered { file, bindings? } list. (required)</documentation>
|
|
39
|
+
</sources>
|
|
40
|
+
<bindings type="type:Text">
|
|
41
|
+
<documentation>Merged prefix to URI map. (required)</documentation>
|
|
42
|
+
</bindings>
|
|
43
|
+
<diagnostics type="type:Text">
|
|
44
|
+
<documentation>Collision diagnostics. (required)</documentation>
|
|
45
|
+
</diagnostics>
|
|
46
|
+
</properties>
|
|
47
|
+
|
|
48
|
+
</block>
|