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

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

Issue 1099813006: fixes #146, JS globals were not understood by the renamer (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: Created 5 years, 8 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 | « no previous file | lib/runtime/dart/core.js » ('j') | lib/src/codegen/js_names.dart » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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$();
« no previous file with comments | « no previous file | lib/runtime/dart/core.js » ('j') | lib/src/codegen/js_names.dart » ('J')

Powered by Google App Engine
This is Rietveld 408576698