| Index: tracing/tracing/extras/importer/v8/splaytree.html
|
| diff --git a/tracing/tracing/extras/importer/v8/splaytree.html b/tracing/tracing/extras/importer/v8/splaytree.html
|
| index a3d7a244f7533de4313cac549f4d4b4d70d17b6a..053c220569e882aa02a87edaf8ec8d663a4ef7f4 100644
|
| --- a/tracing/tracing/extras/importer/v8/splaytree.html
|
| +++ b/tracing/tracing/extras/importer/v8/splaytree.html
|
| @@ -207,7 +207,9 @@ tr.exportTo('tr.e.importer.v8', function() {
|
| // the L tree of the algorithm. The left child of the dummy node
|
| // will hold the R tree of the algorithm. Using a dummy node, left
|
| // and right will always be nodes and we avoid special cases.
|
| - var dummy, left, right;
|
| + var dummy;
|
| + var left;
|
| + var right;
|
| dummy = left = right = new SplayTree.Node(null, null);
|
| var current = this.root_;
|
| while (true) {
|
|
|