File: debugger_support.yaml

package info (click to toggle)
duktape 2.7.0-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 21,160 kB
  • sloc: ansic: 215,359; python: 5,961; javascript: 4,555; makefile: 477; cpp: 205
file content (24 lines) | stat: -rw-r--r-- 829 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# Enable debugger support in general, also needs interrupt support.
DUK_USE_INTERRUPT_COUNTER: true
DUK_USE_DEBUGGER_SUPPORT: true

# Basic set of Notifys.
DUK_USE_DEBUGGER_THROW_NOTIFY: true

# Automatically pause on an uncaught error about to be thrown.
DUK_USE_DEBUGGER_PAUSE_UNCAUGHT: true

# Enable DumpHeap command (experimental).
DUK_USE_DEBUGGER_DUMPHEAP: true

# Enable object inspection commands: GetHeapObjInfo, GetObjPropDesc,
# GetObjPropDescRange.
DUK_USE_DEBUGGER_INSPECT: true

# Transport torture testing: enable when testing your transport
# implementation.
DUK_USE_DEBUGGER_TRANSPORT_TORTURE: false

# NOTE: If you're using the Duktape command line utility for debugging
# (duk --debugger ...), remember to enable debugger support for the command
# line tool when compiling it: -DDUK_CMDLINE_DEBUGGER_SUPPORT.