Skip to content
Snippets Groups Projects
  1. Nov 01, 2018
  2. Oct 30, 2018
  3. Oct 26, 2018
  4. Oct 19, 2018
    • Jonah Williams's avatar
      Refactor test into two packages (#945) · ac213303
      Jonah Williams authored
      * Refactor test into two packages (#1)
      
      * move test and test_core to packages folder
      
      * rename test_core to test_api
      
      * rename packages to pkgs, add dart.js back to repo
      
      * change pubspec to point to test_api version
      
      * move to correct dir in travis.yml
      
      * Remove duplicate utils.dart
      ac213303
  5. Oct 02, 2018
  6. Sep 18, 2018
    • Nate Bosch's avatar
      Add unnecessary new/const lints (#937) · d4ef51ae
      Nate Bosch authored
      Clean up a few violations that weren't corrected by dartfmt --fix.
      Dartfmt would eventually fix these but a new version of the tool needs
      to be published.
      d4ef51ae
  7. Sep 17, 2018
  8. Sep 14, 2018
    • Nate Bosch's avatar
      Allow omitting const in parsed metadata (#935) · 45b673c6
      Nate Bosch authored
      Fixes #915
      
      When there is no `const` the expression is parsed as a
      `MethodInvocation` instead of an `InstanceCreationExpression`. Update
      all the places we were casting to the latter so that it can handle
      either case.
      
      Add some additional tests for import prefix cases.
      45b673c6
  9. Sep 13, 2018
  10. Sep 11, 2018
  11. Sep 05, 2018
  12. Aug 23, 2018
  13. Aug 14, 2018
  14. Aug 13, 2018
  15. Jul 30, 2018
  16. Jul 26, 2018
    • Nate Bosch's avatar
      Fix some style nits in parse_metadata and test (#917) · 275cf5e3
      Nate Bosch authored
      - Use `??`, `??=`, and `?.` instead of explicit `== null`.
      - Use consistent single quotes
      275cf5e3
    • Nate Bosch's avatar
      Remove explicit checks for syntax errors (#916) · 3d0274b3
      Nate Bosch authored
      Towards #915
      
      The CFE will already reject this code if it is incorrect, we don't need
      to also check for syntax errors.
      
      - Remove the explict checks for `const`
      - Remove the explicit checks for using valid constructor names and
        argument types.
      - Update test to remove most of the `const` in examples. Retain const
        constructor calls since we can't yet parse the resulting expression if
        it is omitted.
      - Remove tests for the removed explicit checks.
      3d0274b3
  17. Jul 20, 2018
    • Lasse R.H. Nielsen's avatar
      Strengthen UTF-8 decoding. (#911) · 769f0dd9
      Lasse R.H. Nielsen authored
      Decoding input bytes by doing `.map(utf8.decode)` assumes that input byte chunks are split at encoded code-unit boundaries.
      It's safer to use `.transform(utf8.decoder)` which allows encodings to be split accross input chunks.
      
      Also changed `.listen(f).asFuture()` to the equivalent `.forEach(f)`.
      769f0dd9
  18. Jul 19, 2018
  19. Jul 16, 2018
  20. Jul 09, 2018
  21. Jun 27, 2018
  22. Jun 20, 2018
  23. Jun 18, 2018
  24. Jun 15, 2018
Loading