File tree Expand file tree Collapse file tree 2 files changed +0
-6
lines changed Expand file tree Collapse file tree 2 files changed +0
-6
lines changed Original file line number Diff line number Diff line change @@ -93,9 +93,6 @@ function processTicksAndRejections() {
9393
9494class TickObject {
9595 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 ;
9996 this . callback = callback ;
10097 this . args = args ;
10198
Original file line number Diff line number Diff line change @@ -207,9 +207,6 @@ const Immediate = class Immediate {
207207 constructor ( callback , args ) {
208208 this . _idleNext = null ;
209209 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 ;
213210 this . _onImmediate = callback ;
214211 this . _argv = args ;
215212 this . _destroyed = false ;
You can’t perform that action at this time.
0 commit comments