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: tests/lib/mirrors/invoke_call_through_getter_test.dart

Issue 196953007: Fix LibraryMirror.invoke to call through the contents of an implicit getter. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: split multitest for easier marking of dart2js partial failures Created 6 years, 9 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
Index: tests/lib/mirrors/invoke_call_through_getter_test.dart
diff --git a/tests/lib/mirrors/invoke_call_through_getter_test.dart b/tests/lib/mirrors/invoke_call_through_getter_test.dart
index 71dca685971d1aa2a189395bb5eb7b34ac2ebb51..a4afdd6599f04162e4da0d738ad0e96d1dd08798 100644
--- a/tests/lib/mirrors/invoke_call_through_getter_test.dart
+++ b/tests/lib/mirrors/invoke_call_through_getter_test.dart
@@ -130,10 +130,11 @@ testLibraryReflective() {
}
main() {
- testInstanceBase();
+ // Do not access the getters/closures at the base level in this variant.
+ //testInstanceBase();
testInstanceReflective();
- testClassBase();
+ //testClassBase();
testClassReflective();
- testLibraryBase();
+ //testLibraryBase();
testLibraryReflective();
}

Powered by Google App Engine
This is Rietveld 408576698