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

Unified Diff: sdk/lib/html/html_common/conversions_dartium.dart

Issue 1724133002: Fix InvocationMirror->Invocation in _ReturnedDictionary (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 years, 10 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/html/html_common/conversions_dartium.dart
diff --git a/sdk/lib/html/html_common/conversions_dartium.dart b/sdk/lib/html/html_common/conversions_dartium.dart
index 3c358175e88b489b45241bbf8228309bfb3754fd..03b2d345b564287753c7ce392025129498a79c0b 100644
--- a/sdk/lib/html/html_common/conversions_dartium.dart
+++ b/sdk/lib/html/html_common/conversions_dartium.dart
@@ -103,7 +103,7 @@ convertDartToNative_Dictionary(Map dict) {
class _ReturnedDictionary {
Map _values;
- noSuchMethod(InvocationMirror invocation) {
+ noSuchMethod(Invocation invocation) {
var key = MirrorSystem.getName(invocation.memberName);
if (invocation.isGetter) {
return _values[key];
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698