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

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

Issue 2923653003: Change MethodInvocation.interfaceTarget from a Procedure to a Member. (Closed)
Patch Set: Update after https://codereview.chromium.org/2920223008/ 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 | « pkg/front_end/lib/src/fasta/kernel/kernel_shadow_ast.dart ('k') | pkg/kernel/lib/ast.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/front_end/testcases/inference/downwards_inference_on_list_literals_infer_if_value_types_match_context.dart.strong.expect
diff --git a/pkg/front_end/testcases/inference/downwards_inference_on_list_literals_infer_if_value_types_match_context.dart.strong.expect b/pkg/front_end/testcases/inference/downwards_inference_on_list_literals_infer_if_value_types_match_context.dart.strong.expect
index 44cfb1db7b01674f59de85194cf1e3516968f06a..9e15c0849a6ea713fa169e964aa50c57a611fff8 100644
--- a/pkg/front_end/testcases/inference/downwards_inference_on_list_literals_infer_if_value_types_match_context.dart.strong.expect
+++ b/pkg/front_end/testcases/inference/downwards_inference_on_list_literals_infer_if_value_types_match_context.dart.strong.expect
@@ -19,7 +19,7 @@ abstract class C extends core::Object {
return null;
abstract get assertDOf() → (core::List<(self::DartType) → void>) → (self::DartType) → void;
method method((core::List<(self::DartType) → void>) → (self::DartType) → void assertEOf) → dynamic {
- this.assertAOf(<(self::DartType) → void>[self::_isInt, self::_isString]);
+ this.{self::C::assertAOf}(<(self::DartType) → void>[self::_isInt, self::_isString]);
self::C::assertBOf.call(<(self::DartType) → void>[self::_isInt, self::_isString]);
self::C::assertCOf.call(<(self::DartType) → void>[self::_isInt, self::_isString]);
this.{self::C::assertDOf}(<(self::DartType) → void>[self::_isInt, self::_isString]);
@@ -33,8 +33,8 @@ abstract class G<T extends core::Object> extends core::Object {
;
abstract get assertDOf() → (core::List<(self::DartType) → void>) → (self::DartType) → void;
method method((core::List<(self::DartType) → void>) → (self::DartType) → void assertEOf) → dynamic {
- this.assertAOf(<(self::DartType) → void>[self::_isInt, self::_isString]);
- this.assertAOf(<(self::DartType) → void>[self::_isInt, self::_isString]);
+ this.{self::G::assertAOf}(<(self::DartType) → void>[self::_isInt, self::_isString]);
+ this.{self::G::assertAOf}(<(self::DartType) → void>[self::_isInt, self::_isString]);
this.{self::G::assertDOf}(<(self::DartType) → void>[self::_isInt, self::_isString]);
assertEOf.call(<(self::DartType) → void>[self::_isInt, self::_isString]);
}
@@ -52,10 +52,10 @@ static method test() → dynamic {
self::C::assertBOf.call(<(self::DartType) → void>[self::_isInt, self::_isString]);
self::C::assertCOf.call(<(self::DartType) → void>[self::_isInt, self::_isString]);
self::C c;
- c.assertAOf(<(self::DartType) → void>[self::_isInt, self::_isString]);
+ c.{self::C::assertAOf}(<(self::DartType) → void>[self::_isInt, self::_isString]);
c.{self::C::assertDOf}(<(self::DartType) → void>[self::_isInt, self::_isString]);
self::G<core::int> g;
- g.assertAOf(<(self::DartType) → void>[self::_isInt, self::_isString]);
+ g.{self::G::assertAOf}(<(self::DartType) → void>[self::_isInt, self::_isString]);
g.{self::G::assertDOf}(<(self::DartType) → void>[self::_isInt, self::_isString]);
}
static method main() → dynamic {}
« no previous file with comments | « pkg/front_end/lib/src/fasta/kernel/kernel_shadow_ast.dart ('k') | pkg/kernel/lib/ast.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698