Skip to content

Commit

Permalink
src: replace deprecated ForceSet() method
Browse files Browse the repository at this point in the history
ForceSet() is marked to be deprecated. Replacing
it with DefineOwnProperty().

PR-URL: #14450
Reviewed-By: James M Snell <[email protected]>
Reviewed-By: Anna Henningsen <[email protected]>
Reviewed-By: Colin Ihrig <[email protected]>
Reviewed-By: Tobias Nießen <[email protected]>
  • Loading branch information
fhinkel authored and addaleax committed Aug 1, 2017
1 parent 92b0555 commit d90a5e0
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/async-wrap.cc
Original file line number Diff line number Diff line change
Expand Up @@ -512,10 +512,10 @@ void AsyncWrap::Initialize(Local<Object> target,
static_cast<v8::PropertyAttribute>(v8::ReadOnly | v8::DontDelete);

#define FORCE_SET_TARGET_FIELD(obj, str, field) \
(obj)->ForceSet(context, \
FIXED_ONE_BYTE_STRING(isolate, str), \
field, \
ReadOnlyDontDelete).FromJust()
(obj)->DefineOwnProperty(context, \
FIXED_ONE_BYTE_STRING(isolate, str), \
field, \
ReadOnlyDontDelete).FromJust()

// Attach the uint32_t[] where each slot contains the count of the number of
// callbacks waiting to be called on a particular event. It can then be
Expand Down

0 comments on commit d90a5e0

Please sign in to comment.