1. 12 6月, 2015 1 次提交
  2. 11 6月, 2015 12 次提交
  3. 10 6月, 2015 7 次提交
  4. 09 6月, 2015 8 次提交
  5. 06 6月, 2015 3 次提交
    • H
      Export Point, Size, Rect, Color, Paint, Path, BoxDecoration, Border,... · 12aa568f
      Hixie 提交于
      Export Point, Size, Rect, Color, Paint, Path, BoxDecoration, Border, BorderSide, EdgeDims, and FlexDirection from fn2.dart
      That way most of our libraries don't have to use sky.Foo all over the place, and we can reduce the number of imports in most Dart components.
      
      R=abarth@chromium.org
      
      Review URL: https://codereview.chromium.org/1161323004
      12aa568f
    • H
      Silence a bunch of annoying bogus dartanalyzer warnings. · 3cf7368d
      Hixie 提交于
       - several places where we use a getter knowing that it will return a
         subclass of its declared type, even asserting that it does, but
         where the analyzer is worried that the getter might start returning
         a new value unexpectedly, solved by having a temporary local
         variable shadow the getter and asserting that it doesn't change
         value
       - many many places where we do this with parentData specifically,
         solved by type-erasing parentData.
       - a place where a mixin wants to be subclassing another class, and
         uses its methods, solved by saying that the mixin is abstract but
         implements the superclass
      
      R=abarth@chromium.org
      
      Review URL: https://codereview.chromium.org/1160923008
      3cf7368d
    • A
      Expose _remove from fn2 · 9ea7ac50
      Adam Barth 提交于
      Turns out Scaffold needs to hook _remove, so we need to rename it to remove to
      expose it outside fn2.dart.
      
      R=ianh@google.com
      
      Review URL: https://codereview.chromium.org/1160013007
      9ea7ac50
  6. 05 6月, 2015 9 次提交