/// ////'use strict' ////var foo, {} ////var bar, [] ////let foo1, {a, b} ////const bar1, [c, d] ////var {e, x: [f, g]} = {a:1, x:[]}; ////var { h: i = function j() {} } = obj; verify.navigationTree({ "text": "", "kind": "script", "childItems": [ { "text": "a", "kind": "let" }, { "text": "b", "kind": "let" }, { "text": "bar", "kind": "var" }, { "text": "bar1", "kind": "const" }, { "text": "c", "kind": "const" }, { "text": "d", "kind": "const" }, { "text": "e", "kind": "var" }, { "text": "f", "kind": "var" }, { "text": "foo", "kind": "var" }, { "text": "foo1", "kind": "let" }, { "text": "g", "kind": "var" }, { "text": "i", "kind": "var" } ] }); verify.navigationBar([ { "text": "", "kind": "script", "childItems": [ { "text": "a", "kind": "let" }, { "text": "b", "kind": "let" }, { "text": "bar", "kind": "var" }, { "text": "bar1", "kind": "const" }, { "text": "c", "kind": "const" }, { "text": "d", "kind": "const" }, { "text": "e", "kind": "var" }, { "text": "f", "kind": "var" }, { "text": "foo", "kind": "var" }, { "text": "foo1", "kind": "let" }, { "text": "g", "kind": "var" }, { "text": "i", "kind": "var" } ] } ]);