Rework data structure nodes, other rework

This commit is contained in:
Christopher Schnick
2022-09-04 04:11:01 +02:00
parent c7606f9f8e
commit 4d168b66c0
38 changed files with 408 additions and 762 deletions

View File

@@ -21,7 +21,7 @@ public class DataTableAccumulatorTest extends DaemonControl {
var acc = DataTableAccumulator.create(type);
var val = type.convert(
TupleNode.of(List.of(ValueNode.of("val1"), ValueNode.of("val2")))).orElseThrow();
TupleNode.of(List.of(ValueNode.ofValue("val1"), ValueNode.ofValue("val2")))).orElseThrow();
acc.add(val);
var table = acc.finish(":test");