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

Unified Diff: tests/lib_2/mirrors/delegate_test.dart

Issue 3011633002: Added back helper file accidentally deleted during test block 219 migration. (Closed)
Patch Set: Created 3 years, 4 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_2/mirrors/delegate_library_test.dart ('k') | tests/lib_2/mirrors/disable_tree_shaking_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/lib_2/mirrors/delegate_test.dart
diff --git a/tests/lib_strong/mirrors/delegate_test.dart b/tests/lib_2/mirrors/delegate_test.dart
similarity index 95%
rename from tests/lib_strong/mirrors/delegate_test.dart
rename to tests/lib_2/mirrors/delegate_test.dart
index 7283b6a8e94c5c4b75a68d162966b0a6c8bc3717..4c63f28392da17bd9a0fe94ada496ccf894b95ab 100644
--- a/tests/lib_strong/mirrors/delegate_test.dart
+++ b/tests/lib_2/mirrors/delegate_test.dart
@@ -15,7 +15,6 @@ class C {
get getter => 'g';
set setter(x) {
field = x * 2;
- return 'unobservable value';
}
var field;
@@ -29,7 +28,7 @@ class Proxy {
main() {
var c = new C();
- var proxy = new Proxy(c);
+ dynamic proxy = new Proxy(c);
var result;
Expect.equals('X-Y-Z', proxy.method('X', 'Y', 'Z'));
« no previous file with comments | « tests/lib_2/mirrors/delegate_library_test.dart ('k') | tests/lib_2/mirrors/disable_tree_shaking_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698