Uh oh!
There was an error while loading. Please reload this page.
bigint support - #292
Conversation
mhdawson
commented
Jun 29, 2018
@devsnek. this would also need tests and doc to land. |
devsnek
commented
Jun 29, 2018
@mhdawson working on it locally, mostly just uploaded now to get comments on the design |
devsnek
commented
Jul 6, 2018
how should one add features that are under NAPI_EXPERIMENTAL in node_api? should we use the same preprocessor variable in node-addon-api? |
mhdawson
commented
Jul 9, 2018
@devsnek correct, our plans is to use the same NAPI_EXPERIMENTAL define in node-addon-api for any method that depends on an experimental feature. |
baa8b4f to
dd50036Comparedevsnek
commented
Jul 16, 2018
ce7c06d to
aea9defCompare
NickNaso
left a comment
There was a problem hiding this comment.
Great work. Just some notes about documentation
| static BigInt New(Napi::Env env, uint64_t value); | ||
| ``` | ||
| - `[in] env`: The `napi_env` Environment |
There was a problem hiding this comment.
The input parameter is Napi::Env and in the rest of documentation we defined this parameter as "The environment in which to ..."
| const uint64_t* words); | ||
| ``` | ||
| - `[in] env`: The `napi_env` Environment |
There was a problem hiding this comment.
The parameter env is Napi::Env and in the rest of documentation we defined this parameter as "The environment in which to ..."
devsnek
commented
Jul 18, 2018
@NickNaso comments were addressed |
devsnek
commented
Jul 23, 2018
anything else that needs to happen here? |
mhdawson
commented
Jul 30, 2018
I'd like to find time to take a closer unless someone beats me to landing it. |
ping @mhdawson |
mhdawson
commented
Aug 22, 2018
Sorry still recovering from being out last week, once I catch up will try to get back to this. |
devsnek
commented
Sep 6, 2018
ping @nodejs/addon-api |
Trott
commented
Sep 8, 2018
@nodejs/n-api Can this be merged now? |
Uh oh!
There was an error while loading. Please reload this page.
mhdawson
left a comment
There was a problem hiding this comment.
LGTM after requested doc update
e3cc237 to
e44aca9Comparemhdawson
commented
Sep 18, 2018
This seems to have broken the CI see: https://ci.nodejs.org/job/node-test-node-addon-api/MACHINE=ubuntu1604-64/708/console |
mhdawson
commented
Sep 18, 2018
@devsnek FYI |
Since original submit for nodejs#292 warnings were tightened through nodejs#315 causing the bigint test to fail to compile Fix the compile failure
mhdawson
commented
Sep 18, 2018
submitted #345 to fix compile failure. |
Since original submit for nodejs/node-addon-api#292 warnings were tightened through nodejs/node-addon-api#315 causing the bigint test to fail to compile Fix the compile failure PR-URL: nodejs/node-addon-api#345 Reviewed-By: : None, landed to unbreak CI
Since original submit for nodejs/node-addon-api#292 warnings were tightened through nodejs/node-addon-api#315 causing the bigint test to fail to compile Fix the compile failure PR-URL: nodejs/node-addon-api#345 Reviewed-By: : None, landed to unbreak CI
Since original submit for nodejs/node-addon-api#292 warnings were tightened through nodejs/node-addon-api#315 causing the bigint test to fail to compile Fix the compile failure PR-URL: nodejs/node-addon-api#345 Reviewed-By: : None, landed to unbreak CI
Since original submit for nodejs/node-addon-api#292 warnings were tightened through nodejs/node-addon-api#315 causing the bigint test to fail to compile Fix the compile failure PR-URL: nodejs/node-addon-api#345 Reviewed-By: : None, landed to unbreak CI
blocked until nodejs/node#21226 lands