Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fixup! fixup! src,doc: add C++ internals documentation
  • Loading branch information
addaleax committed Nov 20, 2019
commit 9848ba503ebc76b8723971c47772fb9046656064
6 changes: 3 additions & 3 deletions src/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -341,9 +341,9 @@ Node.js source code.)


`args[n]` is a `Local<Value>` that represents the n-th argument passed to the
function. `args.This()` is the `this` value inside this function call,
and `args.Holder()` which is equivalent to `args.This()` in all use cases inside
of Node.js.
function. `args.This()` is the `this` value inside this function call.
Comment thread
addaleax marked this conversation as resolved.
`args.Holder()` is equivalent to `args.This()` in all use cases inside of
Node.js.

`args.GetReturnValue()` is a placeholder for the return value of the function,
and provides a `.Set()` method that can be called with a boolean, integer,
Expand Down