Skip to content

Commit

Permalink
One more code snippet in windbg guide
Browse files Browse the repository at this point in the history
  • Loading branch information
lowleveldesign committed Jan 26, 2024
1 parent f3899fd commit 92339ce
Showing 1 changed file with 17 additions and 17 deletions.
34 changes: 17 additions & 17 deletions guides/using-windbg.md
Original file line number Diff line number Diff line change
Expand Up @@ -859,23 +859,23 @@ dx @$scriptContents.logn("test")
The number of commands available in the inner JavaScript debugger is quite long and we may list them with the **.help** command. Especially, the evaluate expression (**?** or **??**) are very useful as they allow us to execute any JavaScript expressions and check their results:
```
>>> Debug [strings 11:5] >? host
host : {...}
__proto__ : {...}
...
Int64 : function () { [native code] }
parseInt64 : function () { [native code] }
namespace : {...}
evaluateExpression : function () { [native code] }
evaluateExpressionInContext : function () { [native code] }
getModuleSymbol : function () { [native code] }
getModuleContainingSymbol : function () { [native code] }
getModuleContainingSymbolInformation : function () { [native code] }
getModuleSymbolAddress : function () { [native code] }
setModuleSymbol : function () { [native code] }
getModuleType : function () { [native code] }
...
```shell
# >>> Debug [strings 11:5] >? host
# host : {...}
# __proto__ : {...}
# ...
# Int64 : function () { [native code] }
# parseInt64 : function () { [native code] }
# namespace : {...}
# evaluateExpression : function () { [native code] }
# evaluateExpressionInContext : function () { [native code] }
# getModuleSymbol : function () { [native code] }
# getModuleContainingSymbol : function () { [native code] }
# getModuleContainingSymbolInformation : function () { [native code] }
# getModuleSymbolAddress : function () { [native code] }
# setModuleSymbol : function () { [native code] }
# getModuleType : function () { [native code] }
# ...
```
## Time Travel Debugging (TTD)
Expand Down

0 comments on commit 92339ce

Please sign in to comment.