Join GitHub today
GitHub is home to over 31 million developers working together to host and review code, manage projects, and build software together.
Sign upn-api: create functions directly #21688
Conversation
This comment has been minimized.
This comment has been minimized.
nodejs-github-bot
added
C++
dont-land-on-v4.x
n-api
labels
Jul 6, 2018
gabrielschulhof
requested review from
TimothyGu,
addaleax and
hashseed
Jul 6, 2018
gabrielschulhof
referenced this pull request
Jul 6, 2018
Open
AsyncWorker structural defects and limitations #231
devsnek
approved these changes
Jul 6, 2018
hashseed
approved these changes
Jul 6, 2018
This comment has been minimized.
This comment has been minimized.
addaleax
approved these changes
Jul 6, 2018
kfarnung
approved these changes
Jul 6, 2018
cjihrig
approved these changes
Jul 7, 2018
TimothyGu
approved these changes
Jul 8, 2018
gabrielschulhof
force-pushed the
gabrielschulhof:switch-to-v8-function-new
branch
from
2ba170d
to
bde34a1
Jul 9, 2018
This comment has been minimized.
This comment has been minimized.
|
Rebase and CI before landing: https://ci.nodejs.org/job/node-test-pull-request/15766/ |
This comment has been minimized.
This comment has been minimized.
|
Landed in 978d89f. |
gabrielschulhof
closed this
Jul 9, 2018
gabrielschulhof
added a commit
to gabrielschulhof/node
that referenced
this pull request
Jul 9, 2018
gabrielschulhof
deleted the
gabrielschulhof:switch-to-v8-function-new
branch
Jul 9, 2018
targos
added a commit
that referenced
this pull request
Jul 10, 2018
This was referenced Jul 18, 2018
gabrielschulhof
added a commit
to gabrielschulhof/node
that referenced
this pull request
Aug 8, 2018
gabrielschulhof
referenced this pull request
Aug 8, 2018
Closed
[v8.x-backport] n-api: create functions directly #22202
gabrielschulhof
added a commit
to gabrielschulhof/node
that referenced
this pull request
Aug 10, 2018
gabrielschulhof
added a commit
to gabrielschulhof/node
that referenced
this pull request
Aug 16, 2018
MylesBorins
added a commit
that referenced
this pull request
Aug 17, 2018
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
gabrielschulhof commentedJul 6, 2018
Avoid using
v8::FunctionTemplate::New()when usingv8::Function::New()suffices. This ensures that individual functionscan be gc-ed and that functions can be created dynamically without
running out of memory.
Checklist
make -j4 test(UNIX), orvcbuild test(Windows) passes