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

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: 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..04147a93587ad0dff745c4601a8a6b62f95d98b2 100644
--- a/tests/lib/mirrors/invoke_call_through_getter_test.dart
+++ b/tests/lib/mirrors/invoke_call_through_getter_test.dart
@@ -130,10 +130,12 @@ testLibraryReflective() {
}
main() {
- testInstanceBase();
+ // Multitest so we exerice the paths where are and are not previously accessed
floitsch 2014/03/13 12:06:43 exercise
+ // at the base level.
+ testInstanceBase(); /// 01: ok
testInstanceReflective();
- testClassBase();
+ testClassBase(); /// 01: ok
testClassReflective();
- testLibraryBase();
+ testLibraryBase(); /// 01: ok
testLibraryReflective();
}

Powered by Google App Engine
This is Rietveld 408576698