Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(317)

Side by Side Diff: tests/language/regress_26230_test.dart

Issue 1886633002: Properly handle unfinalized type parameters of generic mixins (fixes #26230). (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « runtime/vm/object.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file.
4
5 class _RenderTabBar extends RenderBox with
6 ContainerRenderObjectMixin<RenderBox, _TabBarParentData>,
7 RenderBoxContainerDefaultsMixin<RenderBox, _TabBarParentData> { }
8 class RenderObject { }
9 class RenderSector extends RenderObject { }
10 class RenderBox extends RenderObject { }
11 class ParentData { }
12 class BoxParentData extends ParentData { }
13 class SectorParentData extends ParentData { }
14 class ContainerParentDataMixin<ChildType extends RenderObject> { }
15 class ContainerRenderObjectMixin<ChildType extends RenderObject, ParentDataType extends ContainerParentDataMixin<ChildType>> { }
16 class SectorChildListParentData extends SectorParentData with ContainerParentDat aMixin<RenderSector> { }
17 class RenderDecoratedSector extends RenderSector { }
18 class RenderSectorWithChildren extends RenderDecoratedSector with ContainerRende rObjectMixin<RenderSector, SectorChildListParentData> { }
19 class ContainerBoxParentDataMixin<ChildType extends RenderObject> extends BoxPar entData with ContainerParentDataMixin<ChildType> { }
20 class RenderBoxContainerDefaultsMixin<ChildType extends RenderBox, ParentDataTyp e extends ContainerBoxParentDataMixin<ChildType>> implements ContainerRenderObje ctMixin<ChildType, ParentDataType> { }
21 class FlexParentData extends ContainerBoxParentDataMixin<RenderBox> { }
22 class _TabBarParentData extends ContainerBoxParentDataMixin<RenderBox> { }
23
24 main() {
25 new _RenderTabBar();
26 }
27
OLDNEW
« no previous file with comments | « runtime/vm/object.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698