Index: lib/runtime/dart/collection.js |
diff --git a/lib/runtime/dart/collection.js b/lib/runtime/dart/collection.js |
index 54d68b2c2644015ab131ab2f85520b3b1e6a11f9..1d448815ce4405d7439178b7ed6e98888b727c13 100644 |
--- a/lib/runtime/dart/collection.js |
+++ b/lib/runtime/dart/collection.js |
@@ -2859,7 +2859,7 @@ var collection; |
let _TypeTest = _TypeTest$(); |
let _comparator = Symbol('_comparator'); |
let _validKey = Symbol('_validKey'); |
- let _internal = Symbol('_internal'); |
+ let _internal$ = Symbol('_internal'); |
let SplayTreeMap$ = dart.generic(function(K, V) { |
class SplayTreeMap extends _SplayTree$(K) { |
SplayTreeMap(compare, isValidKey) { |
@@ -2903,7 +2903,7 @@ var collection; |
[_compare](key1, key2) { |
return this[_comparator](key1, key2); |
} |
- [_internal]() { |
+ [_internal$]() { |
this[_comparator] = null; |
this[_validKey] = null; |
super._SplayTree(); |
@@ -3064,7 +3064,7 @@ var collection; |
dart.defineNamedConstructor(SplayTreeMap, 'from'); |
dart.defineNamedConstructor(SplayTreeMap, 'fromIterable'); |
dart.defineNamedConstructor(SplayTreeMap, 'fromIterables'); |
- dart.defineNamedConstructor(SplayTreeMap, _internal); |
+ dart.defineNamedConstructor(SplayTreeMap, _internal$); |
return SplayTreeMap; |
}); |
let SplayTreeMap = SplayTreeMap$(); |