File tree Expand file tree Collapse file tree 1 file changed +0
-11
lines changed Expand file tree Collapse file tree 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');
8282const kGetEntries = Symbol ( 'get-entries' ) ;
8383const kIndex = Symbol ( 'index' ) ;
8484const kMarks = Symbol ( 'marks' ) ;
85- const kCount = Symbol ( 'count' ) ;
8685
8786const observers = { } ;
8887const observerableTypes = [
@@ -287,11 +286,6 @@ class PerformanceObserverEntryList {
287286 writable : true ,
288287 enumerable : false ,
289288 value : { }
290- } ,
291- [ kCount ] : {
292- writable : true ,
293- enumerable : false ,
294- value : 0
295289 }
296290 } ) ;
297291 L . init ( this [ kEntries ] ) ;
@@ -300,11 +294,6 @@ class PerformanceObserverEntryList {
300294 [ kInsertEntry ] ( entry ) {
301295 const item = { entry } ;
302296 L . append ( this [ kEntries ] , item ) ;
303- this [ kCount ] ++ ;
304- }
305-
306- get length ( ) {
307- return this [ kCount ] ;
308297 }
309298
310299 [ kGetEntries ] ( name , type ) {
You can’t perform that action at this time.
0 commit comments