blob: 481fb9f954696680c70225ca42354b3704ed1997 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
|
---
title: Console.trace()
slug: Web/API/Console/trace
tags:
- API
- DOM
- Développement
- Méthode
- console
- débogage
- trace
translation_of: Web/API/Console/trace
---
<p>{{ APIRef("Console API") }}</p>
<p>Affiche la <em>stack trace</em> dans la <a href="/fr/docs/Outils/Console_Web">Web Console</a>.</p>
<p>{{AvailableInWorkers}}</p>
<p>Voir <a href="/fr/docs/Web/API/console#Stack_traces">Stack traces</a> dans la documentation de {{ domxref("console") }} pour plus de détails et d'exemples.</p>
<h2 id="Syntax">Syntaxe</h2>
<pre class="syntaxbox">console.trace();
</pre>
<h2 id="Exemple">Exemple</h2>
<pre class="brush: js">function foo() {
function bar() {
console.trace();
}
bar();
}
foo();</pre>
<p>Dans la console, la trace suivante sera affichée :</p>
<pre class="brush: html">bar
foo
<anonymous></pre>
<h2 id="Specification">Spécification</h2>
<table class="standard-table">
<thead>
<tr>
<th scope="col">Spécification</th>
<th scope="col">Statut</th>
<th scope="col">Commentaire</th>
</tr>
</thead>
<tbody>
<tr>
<td>{{SpecName("Console API", "#trace", "console.trace()")}}</td>
<td>{{Spec2("Console API")}}</td>
<td>Définition Initiale</td>
</tr>
</tbody>
</table>
<h2 id="Compatibilité_des_navigateurs">Compatibilité des navigateurs</h2>
<p>{{Compat("api.Console.trace")}}</p>
<h2 id="Voir_aussi">Voir aussi</h2>
<p><a href="http://www.opera.com/dragonfly/documentation/console/">Opera Dragonfly documentation: Console</a></p>
|