From 19c48288134db2d047c4cf31ddd0dc372df3db59 Mon Sep 17 00:00:00 2001 From: Christoph Kappestein Date: Wed, 9 Oct 2024 13:46:20 +0200 Subject: [PATCH] use new format --- tests/Generator/resource/source_oop.json | 22 ++++++++++++++-------- 1 file changed, 14 insertions(+), 8 deletions(-) diff --git a/tests/Generator/resource/source_oop.json b/tests/Generator/resource/source_oop.json index 48d49a4..a14207a 100644 --- a/tests/Generator/resource/source_oop.json +++ b/tests/Generator/resource/source_oop.json @@ -23,18 +23,24 @@ }, "StudentMap": { "type": "struct", - "parent": "Map", - "template": { - "P": "Human", - "T": "Student" + "parent": { + "type": "reference", + "target": "Map", + "template": { + "P": "Human", + "T": "Student" + } } }, "HumanMap": { "type": "struct", - "parent": "Map", - "template": { - "P": "Human", - "T": "Human" + "parent": { + "type": "reference", + "target": "Map", + "template": { + "P": "Human", + "T": "Human" + } } }, "Map": {