You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+6-6
Original file line number
Diff line number
Diff line change
@@ -212,7 +212,7 @@ v8 bt command. See the [Commands](#commands) section below for more commands.
212
212
### Commands
213
213
214
214
```
215
-
(lldb) v8 help
215
+
(llnode) v8 help
216
216
Node.js helpers
217
217
218
218
Syntax: v8
@@ -226,7 +226,7 @@ The following subcommands are supported:
226
226
Syntax: v8 bt [number]
227
227
findjsinstances -- List all objects which share the specified map.
228
228
Accepts the same options as `v8 inspect`
229
-
findjsobjects -- List all object types and instance counts grouped by map and sorted by instance count.
229
+
findjsobjects -- List all object types and instance counts grouped by typename and sorted by instance count.
230
230
Requires `LLNODE_RANGESFILE` environment variable to be set to a file containing memory ranges for the
231
231
core file being debugged.
232
232
There are scripts for generating this file on Linux and Mac in the scripts directory of the llnode
@@ -238,25 +238,25 @@ The following subcommands are supported:
238
238
* -v, --value expr - all properties that refer to the specified JavaScript object (default)
239
239
* -n, --name name - all properties with the specified name
240
240
* -s, --string string - all properties that refer to the specified JavaScript string value
241
-
* --array-length num - print maximum of `num` elements in array
242
241
243
-
getactivehandles -- *EXPERIMENTAL* Equivalent to running process._getActiveHandles. This command is still being developed and for now it only works building node from source.
244
-
getactiverequests -- *EXPERIMENTAL* Equivalent to running process._getActiveRequests. This command is still being developed and for now it only works building node from source.
245
242
inspect -- Print detailed description and contents of the JavaScript value.
246
243
247
244
Possible flags (all optional):
248
245
249
246
* -F, --full-string - print whole string without adding ellipsis
250
247
* -m, --print-map - print object's map address
251
248
* -s, --print-source - print source code for function objects
252
-
* --string-length num - print maximum of `num` characters in string
249
+
* -l num, --length num - print maximum of `num` elements from string/array
253
250
254
251
Syntax: v8 inspect [flags] expr
255
252
nodeinfo -- Print information about Node.js
256
253
print -- Print short description of the JavaScript value.
257
254
258
255
Syntax: v8 print expr
259
256
source -- Source code information
257
+
getactivehandles -- *EXPERIMENTAL* Equivalent to running process._getActiveHandles. This command is still being developed and for now it only works building node from source.
258
+
getactiverequests -- *EXPERIMENTAL* Equivalent to running process._getActiveRequests. This command is still being developed and for now it only works building node from source.
259
+
260
260
261
261
For more help on any particular subcommand, type 'help <command> <subcommand>'.
0 commit comments