Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Function and FunctionReference documentation #299

Closed
wants to merge 13 commits into from
Closed

Function and FunctionReference documentation #299

wants to merge 13 commits into from

Conversation

NickNaso
Copy link
Member

First pass on function documentation. Please review only function.md. I'm actually writing the function reference documentation and I will push it as soon as possible.

doc/function.md Outdated
[C++ wrapper classes for the ABI-stable C APIs for Node.js](https://nodejs.github.io/node-addon-api/)
The **Function** class is a representation of the JavaScript function. A function
is a JavaScript procedure, a set of statements that performs a task or calculates
a value. This class provides some methods to create and exectue a function.
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

How about
+The Function class is a representation of the JavaScript function. A function
+is a set of statements that performs a task or calculates
+a value. This class provides some methods to create and execute a function.

doc/function.md Outdated
- std::string (encoded using UTF-8)
- std::u16string
- napi::Value
- napi_value
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I don't think this is right? It likely needs to be a napi_value which is handle for a JavaScript function.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Done.

doc/function.md Outdated
```

- `[in] env`: The `napi_env` environment in which to construct the Function object.
- `[in] cb`: Object that implement the operator **()** accepting a `const CallbackInfo&`
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Should this just say it needs to be an instance of Callable ?

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

implements

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

is it good for you: Object that implements Callable.?

doc/function.md Outdated

- `[in] env`: The `napi_env` environment in which to construct the Function object.
- `[in] cb`: Object that implement the operator **()** accepting a `const CallbackInfo&`
and returns either void or Value.
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Same comment as above.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ditto regarding "void or Value".

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Done.

doc/function.md Outdated
```

- `[in] recv`: The `this` object passed to the called function.
- `[in] args`: List of JavaScript values as `napi_value` representing the
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Maybe

Vector of JavaScript values as napi_value representing the

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Done.

doc/function.md Outdated
- `[in] args`: Initializer list of JavaScript values as `napi_value` representing
the arguments of the function.

Returns a Value representing the JavaScript object returned by the function.
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think we need to have somewhere, either in the intro or in the description of the MakeCallback function where you should use Call versus MakeCallback. You should use Call if there is already a JavaScript function on the stack (for example when running a native method called from JavaScript), and only use MakeCallback in special cases like running OnError, OnOk in AsyncWorker which don't have an existing JavaScript function on the stack.

doc/function.md Outdated

Returns a Value representing the JavaScript object returned by the function.

### New
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think all the new methods should be together.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Done.


### Constructor

Creates a new
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

partial line.

FunctionReference();
```

- `[in] Env`: The environment in which to construct the
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

partial line. I see that in a bunch of places throughout.


- `[in] Env`: The environment in which to construct the

Returns a new
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Function reference overall looks like its missing the substitution. For example "Returns a new" should probably be "Returns a new FunctionReference"


- `[in] Env`: The environment in which to construct the

Returns a new
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think we also need some explanation of why you use a FunctionReference instead of a Function and when.

@mhdawson
Copy link
Member

@NickNaso just wondering if you are going to be able to update this week?

doc/function.md Outdated

### Constructor

Creates a new instance of `Function` object.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

of the Function object.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Done.

doc/function.md Outdated

### New

Creates instance of a `Function` object.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Creates an instance

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Done.

doc/function.md Outdated
```

- `[in] env`: The `napi_env` environment in which to construct the Function object.
- `[in] cb`: Object that implement the operator **()** accepting a `const CallbackInfo&`
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

implements

doc/function.md Outdated

- `[in] env`: The `napi_env` environment in which to construct the Function object.
- `[in] cb`: Object that implement the operator **()** accepting a `const CallbackInfo&`
and returns either void or Value.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Perhaps change this to "void or a Napi::Value".

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Done.

doc/function.md Outdated
- `[in] data`: User-provided data context. This will be passed back into the
function when invoked later.

Returns instance of a `Function` object.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

an instance

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Done.

doc/function.md Outdated

- `[in] env`: The `napi_env` environment in which to construct the Function object.
- `[in] cb`: Object that implement the operator **()** accepting a `const CallbackInfo&`
and returns either void or Value.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ditto regarding "void or Value".

doc/function.md Outdated
- `[in] data`: User-provided data context. This will be passed back into the
function when invoked later.

Returns instance of a `Function` object.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

an instance

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Done.

doc/function.md Outdated
- `[in] args`: Initializer list of JavaScript values as `napi_value` representing
the arguments of the function.

Returns a Value representing the JavaScript object returned by the function.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

"Returns a Napi::Value representing the JavaScript value..." we shouldn't say "JavaScript object" because that has a special meaning.

Copy link
Member Author

@NickNaso NickNaso Jul 18, 2018

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You're right. Sorry.
Done.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

NP 🙂 Weird though ... github hasn't updated to show that 😕

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Oh, I see - you fixed the ones below, but you missed this one. NP, but please say "`Napi::Value`" rather than merely "`Value`" – that is, please use the name space with the type name.

doc/function.md Outdated
- `[in] args`: List of JavaScript values as `napi_value` representing the
arguments of the function.

Returns a Value representing the JavaScript object returned by the function.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ditto.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Done.

doc/function.md Outdated
- `[in] args`: Array of JavaScript values as `napi_value` representing the
arguments of the function.

Returns a Value representing the JavaScript object returned by the function.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ditto also for all instances to follow.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Done.

doc/function.md Outdated
arguments of the function.

Returns a Value representing the JavaScript object returned by the function.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm surprised we don't have overloads which accept an array of Napi::Value items 😕

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

So do I, what do you think if I open an issue about that? Just to remember this and maybe after the documentation I can try to work on that.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

From what I recall, these were my reasons for not adding such an overload:

  1. Function arguments are almost always specified inline with the function call, not prepared ahead of time as an array.
  2. Such an overload would be less efficient. The underlying napi_call_function() takes an array of napi_value. So converting from an array of Napi::Value to that would require allocating a new array and copying each of the (non-contiguous) napi_value elements into the array.
  3. The implicit conversion operator napi_value means it's usually just as convenient to create a vector or std::initializer_list of napi_value instead of Napi::Value. And it's more efficient because it uses less memory by not needlessly duplicating the env value.

But I can understand why the lack of such an overload could be unexpected, given the pattern of most other wrapper functions that take Napi::Value types directly.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Good points. Thanks for sharing this.

@NickNaso
Copy link
Member Author

@mhdawson I'm starting working now.

doc/function.md Outdated
Calls a Javascript function from a native add-on.

```cpp
Value Call(const std::initializer_list<napi_value>& args) const;
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This needs an example, because some people may less familiar with syntax for initializer_list. Especially since this is the most convenient and efficient overload to use for most typical cases.

@NickNaso NickNaso changed the title Function documentation Function and FunctionReference documentation Aug 7, 2018
@NickNaso
Copy link
Member Author

NickNaso commented Aug 7, 2018

Just tried to address all the things issued after first review.

Copy link
Member

@mhdawson mhdawson left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM @NickNaso pushed a couple of suggestions, please take a look an let me know if they look good to you.

@NickNaso
Copy link
Member Author

NickNaso commented Aug 7, 2018

@mhdawson They are both good to me. Thanks for your help.

@mhdawson
Copy link
Member

mhdawson commented Aug 7, 2018

@NickNaso thanks, will leave until tomorrow to let @gabrielschulhof time to take a look and then will go ahead and land.

doc/function.md Outdated
You are reading a draft of the next documentation and it's in continuous update so
if you don't find what you need please refer to:
[C++ wrapper classes for the ABI-stable C APIs for Node.js](https://nodejs.github.io/node-addon-api/)
The **Function** class provides a set of methods to create a function object in
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

"... a set of methods to createfor creating ..."

doc/function.md Outdated
[C++ wrapper classes for the ABI-stable C APIs for Node.js](https://nodejs.github.io/node-addon-api/)
The **Function** class provides a set of methods to create a function object in
native code that can later be called from JavaScript. The created function is not
automatically visible from JavaScript, instead it needs to be part of the add-on's
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is a run-on sentance. Let's have "... from JavaScript. Instead it ..."

doc/function.md Outdated
The **Function** class provides a set of methods to create a function object in
native code that can later be called from JavaScript. The created function is not
automatically visible from JavaScript, instead it needs to be part of the add-on's
module exports or be returned by one of the modules exported functions.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

"module's" instead of "modules"

doc/function.md Outdated
module exports or be returned by one of the modules exported functions.

In addition the `Function` class also provides methods that can be used to call
functions that were created in JavaScript and passed to the native.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

"... to the native add-on", perhaps?

doc/function.md Outdated
addon.fn();
```

The `Function` class allows to call a JavaScript function object from a native
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Maybe we should rephrase this as "With the Function class it is possible to call..."

if you don't find what you need please refer to:
[C++ wrapper classes for the ABI-stable C APIs for Node.js](https://nodejs.github.io/node-addon-api/)
FunctionReference is a subclass of [Reference](reference.md), and is equivalent to
an instance of `Reference<Function>`. This means that a FunctionReference holds a
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

"FunctionReference" should be in backticks.

[C++ wrapper classes for the ABI-stable C APIs for Node.js](https://nodejs.github.io/node-addon-api/)
FunctionReference is a subclass of [Reference](reference.md), and is equivalent to
an instance of `Reference<Function>`. This means that a FunctionReference holds a
[Function](function.md), and a count of the number of references to that Function.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Backticks around "Function" (both in the link and at the end of the line).

FunctionReference is a subclass of [Reference](reference.md), and is equivalent to
an instance of `Reference<Function>`. This means that a FunctionReference holds a
[Function](function.md), and a count of the number of references to that Function.
When the count is greater than 0, a FunctionReference is not eligible for garbage
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Backticks around FunctionReference please!

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

In general, please make another pass and add backticks around type names etc.!

### New

Creates a new JavaScript value from one that represents the constructor for the
object.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Perhaps "Constructs a new instance by calling the constructor held by this reference."?

- `[in] args`: Vector of JavaScript values as napi_value representing the
arguments of the constructor function.

Returns a new JavaScript object.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ditto ... ?

@NickNaso
Copy link
Member Author

@gabrielschulhof Could you take a look at my last update? Thanks :-)

doc/function.md Outdated
module exports or be returned by one of the module's exported functions.

In addition the `Function` class also provides methods that can be used to call
functions that were created in JavaScript and passed to the native add-on.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nit: two spaces between "native" and "add-on"

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Done!

doc/function.md Outdated
With the `Function` class it is possible to call a JavaScript function object
from a native add-on with two different methods: `Call` and `MakeCallback`.
The API of these two methods is very similar, but they are used in different
context. The `MakeCallback` method is used to call from native code back into
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nit: "contexts"

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Done!

doc/function.md Outdated
```

- `[in] env`: The `napi_env` environment in which to construct the Value object.
- `[in] value`: The `napi_value` which is handle for a JavaScript function.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

"...which is a handle..."

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Done!

doc/function.md Outdated
static Function New(napi_env env, Callable cb, const char* utf8name = nullptr, void* data = nullptr);
```

- `[in] env`: The `napi_env` environment in which to construct the Function object.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please put backticks around "Function"

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Done!

if you don't find what you need please refer to:
[C++ wrapper classes for the ABI-stable C APIs for Node.js](https://nodejs.github.io/node-addon-api/)
`FunctionReference` is a subclass of [Reference](reference.md), and is equivalent to
an instance of `Reference<Function>`. This means that a FunctionReference holds a
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please put backticks around "FunctionReference"!

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Done!

When the count is greater than 0, a FunctionReference is not eligible for garbage
collection. This ensures that the `Function` will remain accessible, even if the
original reference to it is no longer available.
`FunctionReference` allows the referenced JavaScript function object to be called
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Two spaces between "object" and "to".

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Done!

### Weak

Creates a "weak" reference to the value, in that the initial count of number of
references is set to 0.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think it's sufficient to say "in that the initial reference count is set to 0."

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Done!

### Persistent

Creates a "persistent" reference to the value, in that the initial count of
number of references is set to 1.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ditto re "reference count".

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Done!

Napi::Object New(const std::initializer_list<napi_value>& args) const;
```

- `[in] args`: Initializer list of JavaScript values as napi_value representing
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Backticks around "napi_value", please!

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Done!

Napi::Object New(const std::vector<napi_value>& args) const;
```

- `[in] args`: Vector of JavaScript values as napi_value representing the
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Backticks around "napi_value", please!

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Done!

@mhdawson
Copy link
Member

@gabrielschulhof I think this is waiting for you now.

@gabrielschulhof
Copy link
Contributor

I actually have to take a few hours before I can review. BRB 🙂

doc/function.md Outdated
Function(napi_env env, napi_value value);
```

- `[in] env`: The `napi_env` environment in which to construct the Value object.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

"... the Function object." (with backticks around "Function").

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Done!

doc/function.md Outdated
static Function New(napi_env env, Callable cb, const std::string& utf8name, void* data = nullptr);
```

- `[in] env`: The `napi_env` environment in which to construct the Function object.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Backticks around "Function"

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Done!

doc/function.md Outdated
- `[in] env`: The `napi_env` environment in which to construct the Value object.
- `[in] value`: The `napi_value` which is a handle for a JavaScript function.

Returns a non-empty `Function` instance.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We should really be consistent about whether we say Napi::Value, Napi::Function, Napi::FunctionReference, etc. or Value, Function, or FunctionReference. IMO we should always add the name space in front of the class name. @mhdawson what do you think?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ok for me. Is it ok for you @mhdawson ?

You are reading a draft of the next documentation and it's in continuous update so
if you don't find what you need please refer to:
[C++ wrapper classes for the ABI-stable C APIs for Node.js](https://nodejs.github.io/node-addon-api/)
`FunctionReference` is a subclass of [Reference](reference.md), and is equivalent to
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Here too, and in all cases where we use class names in the documentation, we should add the name space explicitly – that is, Napi::FunctionReference and Napi::Reference in this case. Additionally, "Reference" should be in backquotes.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@NickNaso the word "Reference" inside the square bracket also needs backticks.

instead of `MakeCallback` and vice-versa.

The `FunctionReference` class inherits its behavior from the `Reference` class
(for more info see: [Reference](reference.md)).
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Backticks around "Reference"

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Done!

```

- `[in] env`: The environment in which to construct the FunctionReference object.
- `[in] ref`: The N-API reference to be held by the FunctionReference.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Backticks around "FunctionReference".

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Done!

@gabrielschulhof
Copy link
Contributor

gabrielschulhof commented Aug 24, 2018

@mhdawson shall we go with full-name-space notation like Napi::Value throughout, or shall Value suffice? IMO we should go with full-name-space notation, but I do not cling strongly to that opinion 🙂 Either way, we should be consistent throughout the docs.

@mhdawson
Copy link
Member

I agree that full-name-space would be best.

@mhdawson
Copy link
Member

mhdawson commented Sep 6, 2018

ok, lets land and then update to always use the name-space

mhdawson pushed a commit that referenced this pull request Sep 6, 2018
PR-URL: #299
Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com>
@mhdawson
Copy link
Member

mhdawson commented Sep 6, 2018

Landed as 757eb1f

@mhdawson mhdawson closed this Sep 6, 2018
kevindavies8 added a commit to kevindavies8/node-addon-api-Develop that referenced this pull request Aug 24, 2022
PR-URL: nodejs/node-addon-api#299
Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com>
Marlyfleitas added a commit to Marlyfleitas/node-api-addon-Development that referenced this pull request Aug 26, 2022
PR-URL: nodejs/node-addon-api#299
Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com>
wroy7860 added a commit to wroy7860/addon-api-benchmark-node that referenced this pull request Sep 19, 2022
PR-URL: nodejs/node-addon-api#299
Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com>
austinli64 added a commit to austinli64/node-addon-api that referenced this pull request May 9, 2023
PR-URL: nodejs/node-addon-api#299
Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com>
johnfrench3 pushed a commit to johnfrench3/node-addon-api-git that referenced this pull request Aug 11, 2023
PR-URL: nodejs/node-addon-api#299
Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

4 participants