Skip to content
Snippets Groups Projects
  1. Dec 18, 2017
    • Bob Nystrom's avatar
      Fix a couple of strong mode runtime cast errors. (#733) · 26db9616
      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
      26db9616
  2. Dec 01, 2017
  3. Nov 14, 2017
  4. Nov 08, 2017
  5. Nov 02, 2017
  6. Nov 01, 2017
  7. Oct 20, 2017
  8. Oct 17, 2017
  9. Sep 28, 2017
  10. Sep 21, 2017
  11. Sep 19, 2017
    • Florian Loitsch's avatar
      Zone.strong (#684) · 4b3e0110
      Florian Loitsch authored
      * Adapt for strong-mode changes to zone.
      
      * Use `runGuarded` instead of `runUnaryGuarded`.
      
      * Increment version number.
      
      * Add Changelog entry.
      0.12.24+6
      4b3e0110
  12. Sep 15, 2017
  13. Sep 12, 2017
  14. Sep 11, 2017
  15. Aug 04, 2017
  16. Jul 26, 2017
  17. Jul 07, 2017
  18. Jun 26, 2017
  19. Jun 23, 2017
  20. Jun 22, 2017
  21. Jun 14, 2017
  22. Jun 09, 2017
  23. Jun 08, 2017
  24. Jun 02, 2017
  25. Jun 01, 2017
  26. May 22, 2017
  27. May 17, 2017
  28. May 05, 2017
  29. May 03, 2017
  30. May 02, 2017
  31. Apr 10, 2017
  32. Apr 05, 2017
Loading