Commit e1ca24c 1 parent 2445c17 commit e1ca24c Copy full SHA for e1ca24c
File tree 1 file changed +6
-1
lines changed
1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -51,7 +51,8 @@ particular a set of JavaScript objects that can refer to each other
51
51
(the “heap”).
52
52
53
53
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.
55
56
56
57
V8 APIs are not thread-safe unless explicitly specified. In a typical Node.js
57
58
application, the main thread and any ` Worker ` threads each have one ` Isolate ` ,
@@ -309,6 +310,10 @@ void ArrayBufferViewHasBuffer(const FunctionCallbackInfo<Value>& args) {
309
310
}
310
311
```
311
312
313
+ (Namespaces are usually omitted through the use of ` using ` statements in the
314
+ Node.js source code.)
315
+
316
+
312
317
` args[n] ` is a ` Local<Value> ` that represents the n-th argument passed to the
313
318
function. ` args.This() ` is the ` this ` value inside this function call.
314
319
You can’t perform that action at this time.
0 commit comments