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

Unified Diff: pkg/front_end/testcases/inference/unresolved_super.dart.strong.expect

Issue 2965513002: Update expectations now that #30000 is fixed. (Closed)
Patch Set: Created 3 years, 6 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 | « no previous file | pkg/front_end/testcases/strong.status » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/front_end/testcases/inference/unresolved_super.dart.strong.expect
diff --git a/pkg/front_end/testcases/inference/unresolved_super.dart.strong.expect b/pkg/front_end/testcases/inference/unresolved_super.dart.strong.expect
new file mode 100644
index 0000000000000000000000000000000000000000..4926c4a81c680907e3277cd17aa8dbbb568f977c
--- /dev/null
+++ b/pkg/front_end/testcases/inference/unresolved_super.dart.strong.expect
@@ -0,0 +1,19 @@
+library test;
+import self as self;
+import "dart:core" as core;
+
+class C extends core::Object {
+ constructor •() → void
+ : super core::Object::•()
+ ;
+ method test() → void {
+ dynamic v1 = super.foo(self::f<dynamic>());
+ dynamic v2 = super.bar;
+ dynamic v3 = super.[](0);
+ dynamic v4 = super.bar = self::f<dynamic>();
+ dynamic v5 = let final dynamic #t1 = 0 in let final dynamic #t2 = self::f<dynamic>() in let final dynamic #t3 = super.[]=(#t1, #t2) in #t2;
+ }
+}
+static method f<T extends core::Object>() → self::f::T
+ return null;
+static method main() → dynamic {}
« no previous file with comments | « no previous file | pkg/front_end/testcases/strong.status » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698