Skip to content
This repository has been archived by the owner on Jul 31, 2018. It is now read-only.

Commit

Permalink
address next set of comments
Browse files Browse the repository at this point in the history
  • Loading branch information
mhdawson committed Sep 29, 2016
1 parent f7ccabe commit 81bf4df
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion 00X-ABI-Stable-Module-API.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,10 @@ The goal of this eps is to define an API that:
* Makes it clear which APIs can use with the expectation
of not being affected by changes in the JavaScript engine
or Node.js release
* The API provided by the Node.js runtime will be in C. In
addition a C++ wrapper which only contains inline functions
and uses the C APIs so that the changes in the C++ wrapper
would not require recompilation.

# Background

Expand Down Expand Up @@ -121,7 +125,7 @@ enum napi_valuetype {
```C
// Getters for defined singletons
NODE_EXTERN napi_value napi_get_undefined_(napi_env e);
NODE_EXTERN napi_value napi_get_undefined(napi_env e);
NODE_EXTERN napi_value napi_get_null(napi_env e);
NODE_EXTERN napi_value napi_get_false(napi_env e);
NODE_EXTERN napi_value napi_get_true(napi_env e);
Expand Down

0 comments on commit 81bf4df

Please sign in to comment.