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

Side by Side Diff: pkg/front_end/testcases/inference/infer_setter_function_typed.dart.strong.expect

Issue 2948693002: Verify that inference ignores setters with function-typed arguments. (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 unified diff | Download patch
« no previous file with comments | « pkg/front_end/testcases/inference/infer_setter_function_typed.dart.outline.expect ('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 library test;
2 import self as self;
3 import "dart:core" as core;
4
5 typedef F = () → core::int;
6 abstract class A extends core::Object {
7 constructor •() → void
8 : super core::Object::•()
9 ;
10 abstract set x(() → core::int value) → void;
11 }
12 abstract class B extends self::A {
13 constructor •() → void
14 : super self::A::•()
15 ;
16 abstract set x(() → dynamic value) → void;
17 }
18 static method f<T extends core::Object>() → self::f::T
19 return null;
20 static method g(self::B b) → dynamic {
21 b.{self::B::x} = self::f<() → dynamic>();
22 }
23 static method main() → dynamic {}
OLDNEW
« no previous file with comments | « pkg/front_end/testcases/inference/infer_setter_function_typed.dart.outline.expect ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698