File tree Expand file tree Collapse file tree 3 files changed +23
-19
lines changed Expand file tree Collapse file tree 3 files changed +23
-19
lines changed Original file line number Diff line number Diff line change @@ -5300,14 +5300,16 @@ mixin(SetCollection, {
5300
5300
} ,
5301
5301
} ) ;
5302
5302
5303
- SetCollection . prototype . has = CollectionPrototype . includes ;
5304
- SetCollection . prototype . contains = SetCollection . prototype . includes ;
5303
+ var SetCollectionPrototype = SetCollection . prototype ;
5304
+ SetCollectionPrototype . has = CollectionPrototype . includes ;
5305
+ SetCollectionPrototype . contains = SetCollectionPrototype . includes ;
5306
+ SetCollectionPrototype . keys = SetCollectionPrototype . values ;
5305
5307
5306
5308
// Mixin subclasses
5307
5309
5308
- mixin ( KeyedSeq , KeyedCollection . prototype ) ;
5309
- mixin ( IndexedSeq , IndexedCollection . prototype ) ;
5310
- mixin ( SetSeq , SetCollection . prototype ) ;
5310
+ mixin ( KeyedSeq , KeyedCollectionPrototype ) ;
5311
+ mixin ( IndexedSeq , IndexedCollectionPrototype ) ;
5312
+ mixin ( SetSeq , SetCollectionPrototype ) ;
5311
5313
5312
5314
// #pragma Helper functions
5313
5315
Original file line number Diff line number Diff line change 5306
5306
} ,
5307
5307
} ) ;
5308
5308
5309
- SetCollection . prototype . has = CollectionPrototype . includes ;
5310
- SetCollection . prototype . contains = SetCollection . prototype . includes ;
5309
+ var SetCollectionPrototype = SetCollection . prototype ;
5310
+ SetCollectionPrototype . has = CollectionPrototype . includes ;
5311
+ SetCollectionPrototype . contains = SetCollectionPrototype . includes ;
5312
+ SetCollectionPrototype . keys = SetCollectionPrototype . values ;
5311
5313
5312
5314
// Mixin subclasses
5313
5315
5314
- mixin ( KeyedSeq , KeyedCollection . prototype ) ;
5315
- mixin ( IndexedSeq , IndexedCollection . prototype ) ;
5316
- mixin ( SetSeq , SetCollection . prototype ) ;
5316
+ mixin ( KeyedSeq , KeyedCollectionPrototype ) ;
5317
+ mixin ( IndexedSeq , IndexedCollectionPrototype ) ;
5318
+ mixin ( SetSeq , SetCollectionPrototype ) ;
5317
5319
5318
5320
// #pragma Helper functions
5319
5321
You can’t perform that action at this time.
0 commit comments