-
Notifications
You must be signed in to change notification settings - Fork 9
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
[fix,async] exception in async _CancelOnErrorSubscriptionWrapper.onError #855
Conversation
A test here would be GREAT |
Package publishing
Documentation at https://github.com/dart-lang/ecosystem/wiki/Publishing-automation. |
PR HealthBreaking changes ✔️
Changelog Entry ✔️
Changes to files need to be accounted for in their respective changelogs. Coverage ✔️
This check for test coverage is informational (issues shown here will not fail the PR). API leaks ✔️The following packages contain symbols visible in the public API, but not exported by the library. Export these symbols or remove them from your publicly visible API.
License Headers ✔️
All source files should start with a license header. |
Passing Example: void f(Object error, StackTrace stackTrace) {
}
subscriptionStream.listen((_) {},
onError: f,
cancelOnError: true); |
@lrhn – thoughts on this? |
@lrhn core/pkgs/async/lib/src/result/error.dart Lines 49 to 55 in 3b35aca
|
That code does look just as wrong. Good catch. |
Ok, i will change this piece too. |
Co-authored-by: Kevin Moore <[email protected]>
Patch fixes exception in async (template cast seems to be changed in dart):