Skip to content
Snippets Groups Projects
  1. Jan 03, 2018
  2. Jan 02, 2018
  3. Dec 18, 2017
    • Bob Nystrom's avatar
      Bump to 0.12.30 before publishing. (#736) · 6e1a5e60
      Bob Nystrom authored
      Bump to 0.12.29+1 before publishing.
    • 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
  4. Dec 17, 2017
  5. Dec 16, 2017
  6. Dec 01, 2017
  7. Nov 14, 2017
  8. Nov 08, 2017
  9. Nov 07, 2017
  10. Nov 02, 2017
  11. Nov 01, 2017
  12. Oct 27, 2017
  13. Oct 20, 2017
  14. Oct 19, 2017
  15. Oct 18, 2017
  16. Oct 17, 2017
  17. Oct 16, 2017
  18. Oct 12, 2017
  19. Oct 11, 2017
Loading