-
Notifications
You must be signed in to change notification settings - Fork 29.8k
ensure dart2js does not compile unsupported packages #40368
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
ensure dart2js does not compile unsupported packages #40368
Conversation
|
It looks like this pull request may not have tests. Please make sure to add tests before merging. While there are exceptions to this rule, if this patch modifies code it is probably not an exception. Reviewers: Read the Tree Hygiene page and make sure this patch meets those guidelines before LGTMing. |
Codecov Report
@@ Coverage Diff @@
## master #40368 +/- ##
==========================================
+ Coverage 58.44% 59.29% +0.84%
==========================================
Files 192 192
Lines 18627 18549 -78
==========================================
+ Hits 10886 10998 +112
+ Misses 7741 7551 -190
Continue to review full report at Codecov.
|
1 similar comment
Codecov Report
@@ Coverage Diff @@
## master #40368 +/- ##
==========================================
+ Coverage 58.44% 59.29% +0.84%
==========================================
Files 192 192
Lines 18627 18549 -78
==========================================
+ Hits 10886 10998 +112
+ Misses 7741 7551 -190
Continue to review full report at Codecov.
|
Description
We currently throw when debug compiling an application to JavaScript if it imports an unsupported library, but not in release mode. This change aligns the behavior to avoid work arounds.