Debug
From FirebugWiki
(Difference between revisions)
Sebastianz (Talk | contribs) (Added description of syntax, hint for needing help and linked back to Command Line API) |
Sebastianz (Talk | contribs) (Added parameter description and examples) |
||
| Line 1: | Line 1: | ||
| - | + | Adds a [[Script Panel#Breakpoints|breakpoint]] on the first line of a JavaScript function. | |
| - | + | This breakpoint can be managed via the [[Breakpoints Side Panel]]. | |
== Syntax == | == Syntax == | ||
| Line 7: | Line 7: | ||
debug(fn) | debug(fn) | ||
</source> | </source> | ||
| + | |||
| + | == Parameters == | ||
| + | === fn === | ||
| + | Function to set the breakpoint at. '''(required)''' | ||
| + | |||
| + | == Examples == | ||
| + | Having the following function: | ||
| + | |||
| + | <source lang="javascript" line="true"> | ||
| + | function test() | ||
| + | { | ||
| + | console.log("test1"); | ||
| + | console.log("test2"); | ||
| + | console.log("test3"); | ||
| + | } | ||
| + | </source> | ||
| + | |||
| + | <source lang="javascript"> | ||
| + | debug(test) | ||
| + | </source> | ||
| + | |||
| + | This sets a breakpoint at line 3 (<code>console.log("test1");</code>). | ||
== See also == | == See also == | ||
| + | * [[undebug]] | ||
* [[Command Line API]] | * [[Command Line API]] | ||
Latest revision as of 09:21, 18 July 2012
Adds a breakpoint on the first line of a JavaScript function.
This breakpoint can be managed via the Breakpoints Side Panel.
Contents |
[edit] Syntax
debug(fn)
[edit] Parameters
[edit] fn
Function to set the breakpoint at. (required)
[edit] Examples
Having the following function:
function test()
{console.log("test1");
console.log("test2");
console.log("test3");
}
debug(test)
This sets a breakpoint at line 3 (console.log("test1");).