-
Notifications
You must be signed in to change notification settings - Fork 29.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fixup! verify dangling napi_ref in napi_wrap
- Loading branch information
1 parent
57a58d1
commit 344493a
Showing
4 changed files
with
141 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
// Flags: --expose-gc | ||
|
||
'use strict'; | ||
const common = require('../../common'); | ||
const addon = require(`./build/${common.buildType}/6_object_wrap`); | ||
|
||
(function scope() { | ||
addon.objectWrapDanglingReference({}); | ||
})(); | ||
|
||
common.gcUntil('object-wrap-ref', () => { | ||
return addon.objectWrapDanglingReferenceTest(); | ||
}); |