File tree 1 file changed +0
-11
lines changed
1 file changed +0
-11
lines changed Original file line number Diff line number Diff line change @@ -82,7 +82,6 @@ const kInsertEntry = Symbol('insert-entry');
82
82
const kGetEntries = Symbol ( 'get-entries' ) ;
83
83
const kIndex = Symbol ( 'index' ) ;
84
84
const kMarks = Symbol ( 'marks' ) ;
85
- const kCount = Symbol ( 'count' ) ;
86
85
87
86
const observers = { } ;
88
87
const observerableTypes = [
@@ -287,11 +286,6 @@ class PerformanceObserverEntryList {
287
286
writable : true ,
288
287
enumerable : false ,
289
288
value : { }
290
- } ,
291
- [ kCount ] : {
292
- writable : true ,
293
- enumerable : false ,
294
- value : 0
295
289
}
296
290
} ) ;
297
291
L . init ( this [ kEntries ] ) ;
@@ -300,11 +294,6 @@ class PerformanceObserverEntryList {
300
294
[ kInsertEntry ] ( entry ) {
301
295
const item = { entry } ;
302
296
L . append ( this [ kEntries ] , item ) ;
303
- this [ kCount ] ++ ;
304
- }
305
-
306
- get length ( ) {
307
- return this [ kCount ] ;
308
297
}
309
298
310
299
[ kGetEntries ] ( name , type ) {
You can’t perform that action at this time.
0 commit comments