Skip to content

Commit

Permalink
Better table
Browse files Browse the repository at this point in the history
  • Loading branch information
Girgias authored Jul 26, 2023
1 parent f31d967 commit 88c346e
Showing 1 changed file with 17 additions and 11 deletions.
28 changes: 17 additions & 11 deletions reference/errorfunc/functions/debug-backtrace.xml
Original file line number Diff line number Diff line change
Expand Up @@ -56,28 +56,34 @@
<tbody>
<row>
<entry><code>debug_backtrace()</code></entry>
<entry>
<entry morerows="2" valign="middle">
Populates both indexes
</entry>
</row>
<row>
<entry><code>debug_backtrace(0)</code> or <code>debug_backtrace(DEBUG_BACKTRACE_IGNORE_ARGS &amp; DEBUG_BACKTRACE_PROVIDE_OBJECT)</code></entry>
<entry>
Omits ["object"] index
</entry>
<entry><code>debug_backtrace(DEBUG_BACKTRACE_PROVIDE_OBJECT)</code></entry>
</row>
<row>
<entry><code>debug_backtrace(1)</code></entry>
</row>
<row>
<entry><code>debug_backtrace(1)</code> or <code>debug_backtrace(DEBUG_BACKTRACE_PROVIDE_OBJECT)</code></entry>
<entry>
Same as <code>debug_backtrace()</code> since <constant>DEBUG_BACKTRACE_PROVIDE_OBJECT</constant> is the default value to the first parameter
<entry><code>debug_backtrace(DEBUG_BACKTRACE_IGNORE_ARGS &amp; DEBUG_BACKTRACE_PROVIDE_OBJECT)</code></entry>
<entry morerows="1" valign="middle">
Omits index <literal>"object"</literal>.
</entry>
</row>
<row>
<entry><code>debug_backtrace(2)</code> or <code>debug_backtrace(DEBUG_BACKTRACE_IGNORE_ARGS)</code></entry>
<entry>
Omits ["object"] AND ["args"] index
<entry><code>debug_backtrace(0)</code></entry>
</row>
<row>
<entry><code>debug_backtrace(DEBUG_BACKTRACE_IGNORE_ARGS)</code></entry>
<entry morerows="1" valign="middle">
Omits index <literal>"object"</literal> <emphasis>and</emphasis> index <literal>"args"</literal>.
</entry>
</row>
<row>
<entry><code>debug_backtrace(2)</code></entry>
</row>
</tbody>
</tgroup>
</table>
Expand Down

0 comments on commit 88c346e

Please sign in to comment.