| Index: lib/runtime/dart/collection.js
|
| diff --git a/lib/runtime/dart/collection.js b/lib/runtime/dart/collection.js
|
| index e9801b7124884e33e9d5fa032a120aef198ebafb..0f19bae1c05b690b22e7efb0d18b8062bbf50284 100644
|
| --- a/lib/runtime/dart/collection.js
|
| +++ b/lib/runtime/dart/collection.js
|
| @@ -113,6 +113,7 @@ dart_library.library('dart/collection', null, /* Imports */[
|
| return HashMap;
|
| });
|
| let HashMap = HashMap$();
|
| + const _newSet = Symbol('_newSet');
|
| const SetMixin$ = dart.generic(function(E) {
|
| class SetMixin extends core.Object {
|
| [Symbol.iterator]() {
|
| @@ -434,7 +435,6 @@ dart_library.library('dart/collection', null, /* Imports */[
|
| return SetBase;
|
| });
|
| let SetBase = SetBase$();
|
| - const _newSet = Symbol('_newSet');
|
| const _HashSetBase$ = dart.generic(function(E) {
|
| class _HashSetBase extends SetBase$(E) {
|
| difference(other) {
|
|
|