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

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: 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/async.js
diff --git a/lib/runtime/dart/async.js b/lib/runtime/dart/async.js
index 88298c6abcfa62b9c12f340092801e93f5ba50e3..9e92df104153aa6ec961d5c45915d2f6b76faf3a 100644
--- a/lib/runtime/dart/async.js
+++ b/lib/runtime/dart/async.js
@@ -5250,12 +5250,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;
}

Powered by Google App Engine
This is Rietveld 408576698