File tree 2 files changed +0
-6
lines changed
2 files changed +0
-6
lines changed Original file line number Diff line number Diff line change @@ -93,9 +93,6 @@ function processTicksAndRejections() {
93
93
94
94
class TickObject {
95
95
constructor ( callback , args , triggerAsyncId ) {
96
- // This must be set to null first to avoid function tracking
97
- // on the hidden class, revisit in V8 versions after 6.2
98
- this . callback = null ;
99
96
this . callback = callback ;
100
97
this . args = args ;
101
98
Original file line number Diff line number Diff line change @@ -207,9 +207,6 @@ const Immediate = class Immediate {
207
207
constructor ( callback , args ) {
208
208
this . _idleNext = null ;
209
209
this . _idlePrev = null ;
210
- // This must be set to null first to avoid function tracking
211
- // on the hidden class, revisit in V8 versions after 6.2
212
- this . _onImmediate = null ;
213
210
this . _onImmediate = callback ;
214
211
this . _argv = args ;
215
212
this . _destroyed = false ;
You can’t perform that action at this time.
0 commit comments