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 @@ -75,7 +75,6 @@ const kInsertEntry = Symbol('insert-entry');
75
75
const kGetEntries = Symbol ( 'get-entries' ) ;
76
76
const kIndex = Symbol ( 'index' ) ;
77
77
const kMarks = Symbol ( 'marks' ) ;
78
- const kCount = Symbol ( 'count' ) ;
79
78
80
79
const observers = { } ;
81
80
const observerableTypes = [
@@ -280,11 +279,6 @@ class PerformanceObserverEntryList {
280
279
writable : true ,
281
280
enumerable : false ,
282
281
value : { }
283
- } ,
284
- [ kCount ] : {
285
- writable : true ,
286
- enumerable : false ,
287
- value : 0
288
282
}
289
283
} ) ;
290
284
L . init ( this [ kEntries ] ) ;
@@ -293,11 +287,6 @@ class PerformanceObserverEntryList {
293
287
[ kInsertEntry ] ( entry ) {
294
288
const item = { entry } ;
295
289
L . append ( this [ kEntries ] , item ) ;
296
- this [ kCount ] ++ ;
297
- }
298
-
299
- get length ( ) {
300
- return this [ kCount ] ;
301
290
}
302
291
303
292
[ kGetEntries ] ( name , type ) {
You can’t perform that action at this time.
0 commit comments