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

Unified Diff: pkg/front_end/test/fasta/mixin.dart.outline.expect

Issue 2689303003: Implement type variables in mixin applications. (Closed)
Patch Set: Address comments. Created 3 years, 10 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « pkg/front_end/test/fasta/mixin.dart.direct.expect ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/front_end/test/fasta/mixin.dart.outline.expect
diff --git a/pkg/front_end/test/fasta/mixin.dart.outline.expect b/pkg/front_end/test/fasta/mixin.dart.outline.expect
index d0c955ca0acf80a96e9d8aab896c69ee535533e5..7c0c30a4736cc9b5e81af0c377ebe7cd5de2f4c0 100644
--- a/pkg/front_end/test/fasta/mixin.dart.outline.expect
+++ b/pkg/front_end/test/fasta/mixin.dart.outline.expect
@@ -2,6 +2,10 @@ library;
import self as self;
import "dart:core" as core;
+class B extends self::Object&M1&M2 {
+ constructor •(dynamic value) → void
+ ;
+}
abstract class M1 extends core::Object {
constructor •() → void
;
@@ -15,6 +19,16 @@ abstract class M2 extends core::Object {
;
}
class C extends self::Object&M1&M2 {
+ constructor •(dynamic value) → void
+ ;
+}
+abstract class G1<T extends core::Object> extends core::Object {
+ constructor •() → void
+ ;
+ method m() → dynamic
+ ;
+}
+class D<S extends core::Object> extends self::D^G1<self::D::S> {
constructor •() → void
;
}
@@ -22,5 +36,11 @@ abstract class Object&M1 = core::Object with self::M1 {
}
abstract class Object&M1&M2 = self::Object&M1 with self::M2 {
}
+abstract class Object&M1 = core::Object with self::M1 {
+}
+abstract class Object&M1&M2 = self::Object&M1 with self::M2 {
+}
+abstract class D^G1<S extends core::Object> = core::Object with self::G1<self::D^G1::S> {
+}
static method main() → dynamic
;
« no previous file with comments | « pkg/front_end/test/fasta/mixin.dart.direct.expect ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698