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.
129 lines
5.8 KiB
129 lines
5.8 KiB
<h1 id="errorobjects">Error objects</h1>
|
|
|
|
<h2>Property summary</h2>
|
|
|
|
<p>Ecmascript Error objects have very few standard properties, so many
|
|
Ecmascript implementations have added quite a few custom properties.
|
|
Duktape uses standard Error properties but also borrows the most useful
|
|
properties used by other implementations. The number of "own" properties
|
|
of error objects is minimized to keep error objects as small as possible.</p>
|
|
|
|
<p>Error objects have the following properties (mostly inherited):</p>
|
|
|
|
<table>
|
|
<thead>
|
|
<tr><th>Property name</th><th>Compatibility</th><th>Description</th></tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr><td class="propname">name</td><td>standard</td><td>Name of error, e.g. <code>TypeError</code>, inherited</td></tr>
|
|
<tr><td class="propname">message</td><td>standard</td><td>Optional message of error, own property, empty message inherited if absent</td></tr>
|
|
<tr><td class="propname">fileName</td><td>Rhino</td><td>Filename related to error source, inherited accessor</td></tr>
|
|
<tr><td class="propname">lineNumber</td><td>Rhino</td><td>Linenumber related to error source, inherited accessor</td></tr>
|
|
<tr><td class="propname">stack</td><td>V8</td><td>Traceback as a multi-line human redable string, inherited accessor</td></tr>
|
|
<tr><td class="propname">tracedata</td><td>Duktape</td><td>Raw traceback data in an internal format, own property</td></tr>
|
|
</tbody>
|
|
</table>
|
|
|
|
<p>If Duktape is compiled with traceback support:</p>
|
|
|
|
<ul>
|
|
<li><code>stack</code>, <code>fileName</code>, and <code>lineNumber</code> are accessor
|
|
properties inherited from <code>Error.prototype</code>.</li>
|
|
<li><code>tracedata</code> is an own property of the Error instance which provides
|
|
the raw data (in an internal format) needed by the accessors.</li>
|
|
</ul>
|
|
|
|
<p>If Duktape is compiled without traceback support:</p>
|
|
<ul>
|
|
<li>The <code>stack</code> accessor will be equivalent to
|
|
<code>Error.prototype.toString()</code>, so that printing the stacktrace
|
|
always produces a useful result.</li>
|
|
<li><code>fileName</code> and <code>lineNumber</code> will be own properties of the
|
|
Error object.</li>
|
|
</ul>
|
|
|
|
<p>When error objects are created using the Duktape API from C code and the
|
|
caller does not give a format string for a <code>message</code>, the <code>message</code>
|
|
property is set to a numeric error code given in the API call. The type of
|
|
<code>message</code> will be number in this case; normally error messages are
|
|
strings. In minimized Duktape builds all errors generated internally by
|
|
Duktape use numeric error codes only.</p>
|
|
|
|
<p>An object is considered an "error object" if its internal prototype
|
|
chain contains the (original) <code>Error.prototype</code> object. Only
|
|
objects matching this criteria get augmented with e.g. traceback data.</p>
|
|
|
|
<h2>Traceback</h2>
|
|
|
|
<p>The <code>stack</code> property is an accessor (setter/getter) property
|
|
which provides a printable traceback related to an error. The traceback
|
|
reflects the call stack when the error object was created (not thrown).
|
|
Traceback data is automatically collected and added to an object:</p>
|
|
<ul>
|
|
<li>when an Error instance is constructed;</li>
|
|
<li>when an error is thrown from C code using the Duktape API;</li>
|
|
<li>when an error is thrown from inside Duktape.</li>
|
|
</ul>
|
|
|
|
<p>The data used to create the traceback is stored in the <code>tracedata</code>
|
|
property in an internal and version-dependent format described in the
|
|
<a href="https://github.com/svaarala/duktape/blob/master/doc/error-objects.txt">internal documentation</a>.
|
|
You shouldn't access the <code>tracedata</code> directly.</p>
|
|
|
|
<p>The exact traceback format is still in flux (and you shouldn't rely on
|
|
an exact format in any case). As an example, the program:</p>
|
|
<pre class="ecmascript-code">
|
|
// shortened from ecmascript-testcases/test-dev-traceback-example.js
|
|
try {
|
|
decodeURIComponent('%e1%a9%01'); // invalid utf-8
|
|
} catch (e) {
|
|
print(e.stack);
|
|
}
|
|
</pre>
|
|
|
|
<p>would print something like:</p>
|
|
<pre>
|
|
URIError: invalid input
|
|
duk_bi_global.c:317
|
|
decodeURIComponent (null) native strict
|
|
global ecmascript-testcases/test-dev-traceback-example.js:3
|
|
</pre>
|
|
|
|
<p>In builds where tracebacks are disabled, the <code>stack</code> accessor
|
|
will return the same value as calling <code>toString()</code> on the error
|
|
would. This means you can always print <code>e.stack</code> and get a useful
|
|
output.</p>
|
|
|
|
<p>The most portable traceback printing approach is something like:</p>
|
|
<pre class="ecmascript-code">
|
|
try {
|
|
decodeURIComponent('%e1%a9%01'); // invalid utf-8
|
|
} catch (e) {
|
|
// Print stacktrace on at least Duktape and V8, or a standard error
|
|
// string otherwise.
|
|
print(e.stack || e);
|
|
}
|
|
</pre>
|
|
|
|
<p>Attempt to write to <code>stack</code> is silently ignored. You can still
|
|
override the accessor by defining an own property of the same name explicitly
|
|
with <code>Object.defineProperty()</code>. This behavior differs from V8 where
|
|
<code>stack</code> is an own property of the Error instance, and if you assign a
|
|
value to <code>stack</code>, the value reads back as assigned.</p>
|
|
|
|
<h2>Current limitations</h2>
|
|
|
|
<ul>
|
|
<li>There is no cause chain support. Cause chains would be useful but there
|
|
are no cause chains in Ecmascript, nor does there seem to be a de facto
|
|
standard for them.</li>
|
|
<li>These is currently no way to access traceback elements programmatically.</li>
|
|
<li>If an error is created with a non-constructor function call to a custom
|
|
error class (<code>MyError('msg')</code> instead of <code>new MyError('msg')</code>)
|
|
it won't get augmented with custom fields such as traceback data. When
|
|
called as a constructor custom errors inheriting from <code>Error</code> get
|
|
augmented normally. Built-in standard errors (like <code>TypeError</code>)
|
|
always get augmented, even when created with a non-constructor function call
|
|
(the tracebacks look slightly different depending on how the error is
|
|
created, though).</li>
|
|
</ul>
|
|
|