lib: do not modify prototype deprecated asyncResource (encore) · nodejs/node@fe7176d

Original file line numberDiff line numberDiff line change

@@ -262,10 +262,10 @@ class AsyncResource {

262262

enumerable: true,

263263

get: deprecate(function() {

264264

return self;

265-

}, 'The asyncResource property on bound functions is deprecated', 'DEP0172', false),

265+

}, 'The asyncResource property on bound functions is deprecated', 'DEP0172', false, false),

266266

set: deprecate(function(val) {

267267

self = val;

268-

}, 'The asyncResource property on bound functions is deprecated', 'DEP0172', false),

268+

}, 'The asyncResource property on bound functions is deprecated', 'DEP0172', false, false),

269269

},

270270

});

271271

return bound;