2
0
mirror of https://github.com/esiur/esiur-dart.git synced 2025-06-27 14:53:11 +00:00
This commit is contained in:
2022-04-02 22:36:52 +03:00
parent 9be227a65e
commit 872da0a2bf
9 changed files with 281 additions and 227 deletions

View File

@ -627,7 +627,7 @@ class TypeTemplate {
offset += dt.size;
var parsed = Codec.parse(data, offset, null);
var parsed = Codec.parse(data, offset, null, null);
offset += parsed.size;

View File

@ -68,6 +68,7 @@ class Warehouse {
rt.add(TemplateType.Resource, new KeyList<Guid, TypeTemplate>());
rt.add(TemplateType.Record, new KeyList<Guid, TypeTemplate>());
rt.add(TemplateType.Wrapper, new KeyList<Guid, TypeTemplate>());
rt.add(TemplateType.Enum, new KeyList<Guid, TypeTemplate>());
return rt;
}