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

Unified Diff: tests/language_strong/deferred_no_such_method_test.dart

Issue 2980383002: ignore `@proxy` in strong mode (Closed)
Patch Set: Created 3 years, 5 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/dev_compiler/test/not_yet_strong_tests.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/language_strong/deferred_no_such_method_test.dart
diff --git a/tests/language_strong/deferred_no_such_method_test.dart b/tests/language_strong/deferred_no_such_method_test.dart
index 6476a4f6e77b433546ebc7da63fdd75d1af35e90..5e041208c511e3a0976aacf028c54e6be4083fc5 100644
--- a/tests/language_strong/deferred_no_such_method_test.dart
+++ b/tests/language_strong/deferred_no_such_method_test.dart
@@ -10,7 +10,7 @@ import "deferred_no_such_method_lib.dart" deferred as lib;
void main() {
asyncStart();
lib.loadLibrary().then((_) {
- Expect.equals(42, new lib.C().nonExisting());
+ Expect.equals(42, (new lib.C() as dynamic).nonExisting());
asyncEnd();
});
}
« no previous file with comments | « pkg/dev_compiler/test/not_yet_strong_tests.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698