Stack traces: Difference between revisions

Content deleted Content added
m omit TI-BASIC
Rdm (talk | contribs)
No edit summary
Line 247:
 
SBCL's backtraces consist entirely of lists of the form <code>(<var>function-name</var> <var>args...</var>)</code>.
 
=={{header|J}}==
 
J's stack can be accessed only when suspension has been enabled. When suspension has not been enabled, break points will not work, errors will bubble out to the top level, and the stack data structure will not be available.
 
To enable suspension and allow subsequent stack frames to be accessed:
13!:0]1
 
To retrieve a stack trace:
13!:13<nowiki>''</nowiki>
 
See also: http://www.jsoftware.com/help/dictionary/dx013.htm
 
=={{header|Java}}==