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

Unified Diff: tests/compiler/dart2js/kernel/impact_test.dart

Issue 2662253002: Handle private dynamic access in impact_test. (Closed)
Patch Set: Created 3 years, 11 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/compiler/lib/src/serialization/equivalence.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/compiler/dart2js/kernel/impact_test.dart
diff --git a/tests/compiler/dart2js/kernel/impact_test.dart b/tests/compiler/dart2js/kernel/impact_test.dart
index 001591f0a3fcef0d4393f93897f9f8a82d20564f..67f4adcf38a034def132ebee2ef73d831ba3e1dd 100644
--- a/tests/compiler/dart2js/kernel/impact_test.dart
+++ b/tests/compiler/dart2js/kernel/impact_test.dart
@@ -174,6 +174,7 @@ main() {
testEnum();
testStaticGenericMethod();
testInstanceGenericMethod();
+ testDynamicPrivateMethodInvoke();
}
testEmpty() {}
@@ -598,6 +599,8 @@ testStaticGenericMethod() {
testInstanceGenericMethod() {
new GenericClass<int, String>.generative().genericMethod<bool>(false);
}
+
+testDynamicPrivateMethodInvoke([o]) => o._privateMethod();
''',
'helper.dart': '''
class Class {
« no previous file with comments | « pkg/compiler/lib/src/serialization/equivalence.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698