-
Notifications
You must be signed in to change notification settings - Fork 15
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Orange does not like Tuples #38
Comments
I'll see what I can do. |
It works (or rather doesn't) with And also without the container:
With a shorter error message list: src/orange/orange/serialization/Serializer.d-mixin-1512:1512: error: no property '_expand_field_0' for tuple '(int)' |
The following code fails with
no property '_expand_field_0' for tuple '(const(Class))'
:src/orange/orange/serialization/Serializer.d-mixin-1512:1512: error: no property '_expand_field_0' for tuple '(const(Class))' src/orange/orange/serialization/Serializer.d:825: error: template instance orange.serialization.Serializer.Serializer.objectStructSerializeHelper!(const(Tuple!(Class))) error instantiating src/orange/orange/serialization/Serializer.d:721: note: instantiated from here: serializeStruct!(const(Tuple!(Class))) src/orange/orange/serialization/Serializer.d:850: note: instantiated from here: serializeInternal!(const(Tuple!(Class))) src/orange/orange/serialization/Serializer.d:727: note: instantiated from here: serializeArray!(Tuple!(Class)[]) src/orange/orange/serialization/Serializer.d:924: note: ... (4 instantiations, -v to show) ... src/orange/orange/serialization/Serializer.d:665: note: instantiated from here: serializeInternal!(Container) src/saving.d:14: note: instantiated from here: serialize!(Container) src/orange/orange/serialization/Serializer.d:721: error: template instance orange.serialization.Serializer.Serializer.serializeStruct!(const(Tuple!(Class))) error instantiating src/orange/orange/serialization/Serializer.d:850: note: instantiated from here: serializeInternal!(const(Tuple!(Class))) src/orange/orange/serialization/Serializer.d:727: note: instantiated from here: serializeArray!(Tuple!(Class)[]) src/orange/orange/serialization/Serializer.d:924: note: instantiated from here: serializeInternal!(Tuple!(Class)[]) src/orange/orange/serialization/Serializer.d:1541: note: ... (3 instantiations, -v to show) ... src/orange/orange/serialization/Serializer.d:665: note: instantiated from here: serializeInternal!(Container) src/saving.d:14: note: instantiated from here: serialize!(Container) src/orange/orange/serialization/Serializer.d:850: error: template instance orange.serialization.Serializer.Serializer.serializeInternal!(const(Tuple!(Class))) error instantiating src/orange/orange/serialization/Serializer.d:727: note: instantiated from here: serializeArray!(Tuple!(Class)[]) src/orange/orange/serialization/Serializer.d:924: note: instantiated from here: serializeInternal!(Tuple!(Class)[]) src/orange/orange/serialization/Serializer.d:1541: note: instantiated from here: serializePointer!(Tuple!(Class)[]*) src/orange/orange/serialization/Serializer.d:798: note: ... (2 instantiations, -v to show) ... src/orange/orange/serialization/Serializer.d:665: note: instantiated from here: serializeInternal!(Container) src/saving.d:14: note: instantiated from here: serialize!(Container) src/orange/orange/serialization/Serializer.d:727: error: template instance orange.serialization.Serializer.Serializer.serializeArray!(Tuple!(Class)[]) error instantiating src/orange/orange/serialization/Serializer.d:924: note: instantiated from here: serializeInternal!(Tuple!(Class)[]) src/orange/orange/serialization/Serializer.d:1541: note: instantiated from here: serializePointer!(Tuple!(Class)[]*) src/orange/orange/serialization/Serializer.d:798: note: instantiated from here: objectStructSerializeHelper!(Container) src/orange/orange/serialization/Serializer.d:718: note: ... (1 instantiations, -v to show) ... src/orange/orange/serialization/Serializer.d:665: note: instantiated from here: serializeInternal!(Container) src/saving.d:14: note: instantiated from here: serialize!(Container) src/orange/orange/serialization/Serializer.d:924: error: template instance orange.serialization.Serializer.Serializer.serializeInternal!(Tuple!(Class)[]) error instantiating src/orange/orange/serialization/Serializer.d:1541: note: instantiated from here: serializePointer!(Tuple!(Class)[]*) src/orange/orange/serialization/Serializer.d:798: note: instantiated from here: objectStructSerializeHelper!(Container) src/orange/orange/serialization/Serializer.d:718: note: instantiated from here: serializeObject!(Container) src/orange/orange/serialization/Serializer.d:665: note: instantiated from here: serializeInternal!(Container) src/saving.d:14: note: instantiated from here: serialize!(Container) src/orange/orange/serialization/Serializer.d:1541: error: template instance orange.serialization.Serializer.Serializer.serializePointer!(Tuple!(Class)[]*) error instantiating src/orange/orange/serialization/Serializer.d:798: note: instantiated from here: objectStructSerializeHelper!(Container) src/orange/orange/serialization/Serializer.d:718: note: instantiated from here: serializeObject!(Container) src/orange/orange/serialization/Serializer.d:665: note: instantiated from here: serializeInternal!(Container) src/saving.d:14: note: instantiated from here: serialize!(Container) src/orange/orange/serialization/Serializer.d:798: error: template instance orange.serialization.Serializer.Serializer.objectStructSerializeHelper!(Container) error instantiating src/orange/orange/serialization/Serializer.d:718: note: instantiated from here: serializeObject!(Container) src/orange/orange/serialization/Serializer.d:665: note: instantiated from here: serializeInternal!(Container) src/saving.d:14: note: instantiated from here: serialize!(Container) src/orange/orange/serialization/Serializer.d:718: error: template instance orange.serialization.Serializer.Serializer.serializeObject!(Container) error instantiating src/orange/orange/serialization/Serializer.d:665: note: instantiated from here: serializeInternal!(Container) src/saving.d:14: note: instantiated from here: serialize!(Container) src/orange/orange/serialization/Serializer.d:665: error: template instance orange.serialization.Serializer.Serializer.serializeInternal!(Container) error instantiating src/saving.d:14: note: instantiated from here: serialize!(Container) src/saving.d:14: error: template instance orange.serialization.Serializer.Serializer.serialize!(Container) error instantiating
The text was updated successfully, but these errors were encountered: