Proper multifile

This commit is contained in:
Martino Ferrari
2026-01-19 23:46:03 +01:00
parent 1eda6a2a38
commit d3818504b5
12 changed files with 496 additions and 205 deletions

View File

@@ -0,0 +1,5 @@
#package TEST.MERGE
+Node = {
Class = "MyClass"
FieldA = 1
}

View File

@@ -0,0 +1,4 @@
#package TEST.MERGE
+Node = {
FieldB = 2
}

View File

@@ -0,0 +1,4 @@
#package TEST.ORDER
+Node = {
Field = 1
}

View File

@@ -0,0 +1,4 @@
#package TEST.ORDER
+Node = {
Class = "Ordered"
}

View File

@@ -0,0 +1,6 @@
#package TEST.DUP
+Node = {
Class = "DupClass"
Field = 1
Field = 2
}