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

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

Issue 17450005: Include named parameters in reflection names. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 years, 6 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 | « dart/sdk/lib/_internal/compiler/implementation/js_backend/emitter.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: dart/tests/lib/mirrors/get_symbol_name_no_such_method_test.dart
diff --git a/dart/tests/lib/mirrors/get_symbol_name_no_such_method_test.dart b/dart/tests/lib/mirrors/get_symbol_name_no_such_method_test.dart
index 7210d98eaa5991591676b8f34ca2e5705ad5132e..1b60ae5b23ccb416f37029bb280df29c3561827a 100644
--- a/dart/tests/lib/mirrors/get_symbol_name_no_such_method_test.dart
+++ b/dart/tests/lib/mirrors/get_symbol_name_no_such_method_test.dart
@@ -24,14 +24,12 @@ main() {
expect('foo', foo.foo);
expect('foo', foo.foo());
expect('foo', foo.foo(null));
- // TODO(ahe): Why does the following not work in dart2js/minified.
- // expect('foo', foo.foo(null, null));
+ expect('foo', foo.foo(null, null));
expect('foo', foo.foo(a: null, b: null));
expect('baz', foo.baz);
expect('baz', foo.baz());
expect('baz', foo.baz(null));
- // TODO(ahe): Why does the following not work in dart2js/minified.
- // expect('baz', foo.baz(null, null));
+ expect('baz', foo.baz(null, null));
expect('baz', foo.baz(a: null, b: null));
}
« no previous file with comments | « dart/sdk/lib/_internal/compiler/implementation/js_backend/emitter.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698