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; |
} |