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

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

Issue 1700153002: Wrapperless dart:html and friends (Closed) Base URL: https://github.com/dart-lang/dev_compiler.git@master
Patch Set: A couple more tweaks 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 | « lib/runtime/dart/_runtime.js ('k') | lib/runtime/dart/collection.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/runtime/dart/async.js
diff --git a/lib/runtime/dart/async.js b/lib/runtime/dart/async.js
index c628abee456bad0fa11c6197385d2df31eb36988..4a8cd82b41b06c37753d0057dcb5fcb5c73c02e7 100644
--- a/lib/runtime/dart/async.js
+++ b/lib/runtime/dart/async.js
@@ -5232,12 +5232,12 @@ dart_library.library('dart/async', null, /* Imports */[
}
}
get(key) {
- let result = this[_map].get(key);
- if (result != null || dart.notNull(this[_map].containsKey(key))) return result;
+ let result = this[_map][dartx.get](key);
+ if (result != null || dart.notNull(this[_map][dartx.containsKey](key))) return result;
if (this.parent != null) {
let value = this.parent.get(key);
if (value != null) {
- this[_map].set(key, value);
+ this[_map][dartx.set](key, value);
}
return value;
}
« no previous file with comments | « lib/runtime/dart/_runtime.js ('k') | lib/runtime/dart/collection.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698