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.
12 lines
423 B
12 lines
423 B
define: DUK_USE_TRACEBACKS
|
|
introduced: 1.0.0
|
|
default: true
|
|
tags:
|
|
- ecmascript
|
|
description: >
|
|
Record traceback data into ECMAScript error objects.
|
|
|
|
When disabled, traceback data is not recorded, but fileName/lineNumber of
|
|
the error cause are still recorded as explicit properties. Disabling this
|
|
option reduces footprint and makes error handling a bit faster, at the cost
|
|
of less informative ECMAScript errors.
|
|
|