Skip to content

Commit e1ca24c

Browse files
committed
fixup! src,doc: add C++ internals documentation
1 parent 2445c17 commit e1ca24c

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

src/README.md

+6-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,8 @@ particular a set of JavaScript objects that can refer to each other
5151
(the “heap”).
5252

5353
The `v8::Isolate` is often passed to other V8 API functions, and provides some
54-
APIs for managing the behaviour of the JavaScript engine.
54+
APIs for managing the behaviour of the JavaScript engine or querying about its
55+
current state or statistics such as memory usage.
5556

5657
V8 APIs are not thread-safe unless explicitly specified. In a typical Node.js
5758
application, the main thread and any `Worker` threads each have one `Isolate`,
@@ -309,6 +310,10 @@ void ArrayBufferViewHasBuffer(const FunctionCallbackInfo<Value>& args) {
309310
}
310311
```
311312

313+
(Namespaces are usually omitted through the use of `using` statements in the
314+
Node.js source code.)
315+
316+
312317
`args[n]` is a `Local<Value>` that represents the n-th argument passed to the
313318
function. `args.This()` is the `this` value inside this function call.
314319

0 commit comments

Comments
 (0)