1. 30 Jun, 2022 1 commit
  2. 24 Jun, 2022 1 commit
  3. 17 Jun, 2022 1 commit
  4. 16 Jun, 2022 1 commit
  5. 09 Jun, 2022 1 commit
  6. 26 May, 2022 1 commit
  7. 24 May, 2022 1 commit
  8. 14 Apr, 2022 1 commit
  9. 12 Apr, 2022 1 commit
  10. 06 Apr, 2022 1 commit
  11. 21 Mar, 2022 1 commit
  12. 11 Feb, 2022 1 commit
  13. 03 Feb, 2022 1 commit
  14. 08 Oct, 2021 1 commit
  15. 23 Aug, 2021 1 commit
  16. 20 Aug, 2021 1 commit
  17. 09 Aug, 2021 1 commit
  18. 15 Jul, 2021 1 commit
  19. 14 Jul, 2021 3 commits
  20. 13 Jul, 2021 2 commits
  21. 14 May, 2021 1 commit
  22. 13 May, 2021 1 commit
  23. 07 May, 2021 1 commit
  24. 03 May, 2021 1 commit
  25. 03 Apr, 2021 1 commit
  26. 02 Apr, 2021 1 commit
  27. 23 Jan, 2021 1 commit
  28. 14 Jan, 2021 1 commit
  29. 05 Jan, 2021 1 commit
  30. 17 Dec, 2020 1 commit
    • Paul Berry's avatar
      Fix flutter in preparation for implementing Dart's "Infer non-nullability from... · 9ec1601c
      Paul Berry authored
      Fix flutter in preparation for implementing Dart's "Infer non-nullability from local boolean variables" (#72494)
      
      When https://github.com/dart-lang/language/issues/1274 (Infer
      non-nullability from local boolean variables) is implemented, flow
      analysis will detect that code like this no longer needs to perform a
      null check:
      
          final bool contextIsValid = focus != null && focus.context != null;
          ...
          if (contextIsValid) {
            ... focus! ... // Null check unnecessary
          }
      
      To avoid a build failure due to the unnecessary null check, we need to
      temporarily write it in a way that we can ignore it.  Once the feature
      is complete and rolled into flutter, I'll remove the null check
      entirely.
      9ec1601c
  31. 21 Nov, 2020 1 commit
  32. 20 Nov, 2020 1 commit
  33. 17 Nov, 2020 1 commit
  34. 16 Nov, 2020 1 commit
  35. 12 Nov, 2020 1 commit
  36. 11 Nov, 2020 1 commit
  37. 05 Nov, 2020 1 commit