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

Unified Diff: lib/runtime/dart/_js_helper.js

Issue 1700153002: Wrapperless dart:html and friends (Closed) Base URL: https://github.com/dart-lang/dev_compiler.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
Index: lib/runtime/dart/_js_helper.js
diff --git a/lib/runtime/dart/_js_helper.js b/lib/runtime/dart/_js_helper.js
index a046e15957c504d75e36cf1d3495558315d4679d..64a1ca882bdc66c8bc837690f71318f2f9a2f2ad 100644
--- a/lib/runtime/dart/_js_helper.js
+++ b/lib/runtime/dart/_js_helper.js
@@ -972,7 +972,7 @@ dart_library.library('dart/_js_helper', null, /* Imports */[
while (index < dart.notNull(length)) {
let key = getIndex(keyValuePairs, index++);
let value = getIndex(keyValuePairs, index++);
- result.set(key, value);
+ result[dartx.set](key, value);
}
return result;
}

Powered by Google App Engine
This is Rietveld 408576698