-
Notifications
You must be signed in to change notification settings - Fork 1.6k
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
Wrapped function causes runtime error. #39818
Comments
The problem is that you are specifying that you want a When you assign So when you evaluate We have plans to add support for statically safe variance (covariance, contravariance, invariance) to Dart, so you will (if we proceed to do this, which is quite likely) be able to specify the variance on each type parameter, and then there will be static checks that the rules necessary for soundness are respected. In particular, if you were to declare as covariant with So you would still not be able to have So what you can do now is to treat You can actually create a discipline which is similar to declaring the type variable invariant, and this may or may not work in practice for you: If you declare separate nominal subtypes for each actual type argument that you wish to use then you can express the exact type argument today: abstract class Interface {}
class Model implements Interface {}
class Lens<A> {
final A Function(A) get;
const Lens(this.get);
}
class InterfaceLens extends Lens<Interface> {
InterfaceLens(Interface Function(Interface) f): super(f);
}
class ModelLens extends Lens<Model> {
ModelLens(Model Function(Model) f): super(f);
}
void main() {
InterfaceLens a = ModelLens((a) => a); // Compile-time error!
...
} This allows you to create types where the type argument is statically known (if you know that you have an instance of If you are working in terms of |
Thank you very much for the workaround and the clear explanation. |
dartpad
I'm not sure how to describe this issue.
I'm trying to chain lenses (functional references) and this problem comes up when I'm dealing with inheritance hierarchies.
Implicit-casts are set to false so I'm expecting some kind of safety there, but I'm not sure if this scenario is just something that I have to somehow be careful about?
I'd at least expect that that program would not compile, but instead, it crashes on the print call.
Is there a way to deal with this?
The text was updated successfully, but these errors were encountered: