- May 31, 2018
-
-
Gary Roumanis authored
-
- May 19, 2018
-
-
Kevin Moore authored
Prepare to release 0.12.38+1
-
- May 14, 2018
-
-
Kevin Moore authored
-
- May 03, 2018
-
-
Jacob MacDonald authored
- added `// ignore` comments for references to internal deprecated members - removed comments referencing deprecated arguments - upped args minimum constraint and migrated to `addMultiOption` - dropped polymer support - added `--fatal-infos` and `--fatal-warnings` to dartanalyzer test to prevent regressions and expose new warnings via cron jobs. - fixed up some markdown issues
-
Nate Bosch authored
Closes #824 Makes test/frontend/never_called_test work with --preview-dart-2
-
Jacob MacDonald authored
-
- May 02, 2018
-
-
Jacob MacDonald authored
-
- Apr 17, 2018
-
-
Jacob MacDonald authored
-
Nate Bosch authored
- Delete dartium and content shell platforms - Delete tests related to dartium - Remove references to these platforms in docs - Stop installing dartium on Travis
-
Jacob MacDonald authored
-
- Apr 12, 2018
-
-
Jacob MacDonald authored
-
- Apr 10, 2018
-
-
Jacob MacDonald authored
-
Jacob MacDonald authored
-
Kevin Moore authored
Usage of 1.23 is non-existent Increase turn-around on Travis
-
Jacob MacDonald authored
-
- Apr 06, 2018
-
-
Jacob MacDonald authored
-
Jacob MacDonald authored
-
- Mar 27, 2018
-
-
Natalie Weizenbaum authored
-
- Mar 22, 2018
-
-
Natalie Weizenbaum authored
Closes #786
-
- Mar 20, 2018
-
-
Gary Roumanis authored
-
- Mar 07, 2018
-
-
Natalie Weizenbaum authored
I forgot that this wasn't supported in Dart 1.24
. Closes #781
-
- Mar 06, 2018
-
-
Natalie Weizenbaum authored
See the internal bug b/73723892
-
- Mar 02, 2018
-
-
Matan Lurey authored
-
- Feb 24, 2018
-
-
Natalie Weizenbaum authored
Also re-enable headless mode by default. See #772 for an example of a failure that only occurs in headless mode.
-
Natalie Weizenbaum authored
This wasn't caught by Travis due to our workaround for #599.
-
- Feb 23, 2018
-
-
Gary Roumanis authored
-
- Feb 10, 2018
-
-
Natalie Weizenbaum authored
We weren't destroying our references to `iframe`s after removing those frames from the DOM, so we would slowly accumulate more and more frames as time went on. Partially addresses #724
-
- Feb 07, 2018
-
-
Natalie Weizenbaum authored
Closes #753
-
- Jan 22, 2018
-
-
Gary Roumanis authored
-
- Jan 03, 2018
-
-
Natalie Weizenbaum authored
Closes #742
-
Natalie Weizenbaum authored
Closes #740
-
- Jan 02, 2018
-
-
Natalie Weizenbaum authored
-
- Dec 18, 2017
-
-
Bob Nystrom authored
Fix a couple of strong mode runtime cast errors. In strong mode, a generic type instantiated with dynamic is not a subtype of all types. You can't pass a List<dynamic> to something expecting, say, List<int>. These errors are usually detected statically, and most of those have been fixed. However, sometimes this becomes a runtime cast, as in: main() { // Store a List<dynamic> in a variable of type dynamic. dynamic d = []; // Implicit runtime downcast from dynamic to List<String>. List<String> s = d; } In order to ease the migration to strong mode, DDC has been ignoring these cast failures when they involve certain commonly used types. We are now in the process of actively fixing those errors. More context: https://github.com/dart-lang/sdk/issues/27223
-
- Dec 01, 2017
-
-
Natalie Weizenbaum authored
We were previously communicating over standard in/out, but this was fragile: if raw JS code printed anything to stdout, it would break our connection.
-
Natalie Weizenbaum authored
-
Natalie Weizenbaum authored
Closes #726
-
- Nov 14, 2017
-
-
Natalie Weizenbaum authored
Closes #417
-
Natalie Weizenbaum authored
-
- Nov 08, 2017
-
-
Natalie Weizenbaum authored
-
- Nov 02, 2017
-
-
Natalie Weizenbaum authored
addTearDown() now adds a tearDownAll() rather than adding a plain tearDown() when called from within setUpAll() (or tearDownAll()). This is technically a behavioral change, but the old behavior was so useless I doubt anyone was relying on it. Closes #712
-