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

Unified Diff: tests/lib/mirrors/invoke_closurization_test.dart

Issue 219493003: Revert "Add support for closure calls through getters." (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
« no previous file with comments | « tests/lib/mirrors/invoke_call_through_implicit_getter_previously_accessed_test.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/lib/mirrors/invoke_closurization_test.dart
diff --git a/tests/lib/mirrors/invoke_closurization_test.dart b/tests/lib/mirrors/invoke_closurization_test.dart
index 4d1891919dfb4cee3740b3963920c9f04b0e70d3..10391611b4ce761d57c6b33af29ca6ff8bb5338e 100644
--- a/tests/lib/mirrors/invoke_closurization_test.dart
+++ b/tests/lib/mirrors/invoke_closurization_test.dart
@@ -20,9 +20,9 @@ testSync() {
C c = new C();
InstanceMirror im = reflect(c);
- result = im.getField(#instanceMethod); /// 00: ok
- Expect.isTrue(result.reflectee is Function, "Should be closure"); /// 00: continued
- Expect.equals("A+B+C", result.reflectee('A', 'B', 'C')); /// 00: continued
+ result = im.getField(#instanceMethod);
+ Expect.isTrue(result.reflectee is Function, "Should be closure");
+ Expect.equals("A+B+C", result.reflectee('A', 'B', 'C'));
ClassMirror cm = reflectClass(C);
result = cm.getField(#staticFunction);
« no previous file with comments | « tests/lib/mirrors/invoke_call_through_implicit_getter_previously_accessed_test.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698