mirror of https://github.com/svaarala/duktape.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
477 B
22 lines
477 B
name: duk_debugger_detach
|
|
|
|
proto: |
|
|
void duk_debugger_detach(duk_context *ctx);
|
|
|
|
summary: |
|
|
<p>Detach a debugger from the Duktape heap. If debugger support is not
|
|
compiled into Duktape, throws an error. See
|
|
<a href="https://github.com/svaarala/duktape/blob/master/doc/debugger.rst">debugger.rst</a>
|
|
for more information.</p>
|
|
|
|
example: |
|
|
duk_debugger_detach(ctx);
|
|
|
|
tags:
|
|
- debugger
|
|
|
|
seealso:
|
|
- duk_debugger_attach
|
|
- duk_debugger_cooperate
|
|
|
|
introduced: 1.2.0
|
|
|