/// // @allowJs: true // @Filename: /a.js ////exports.a = exports.b = exports.c = 0; verify.navigationTree({ text: "", kind: "script", childItems: [ { text: "a", kind: "const", childItems: [ { text: "b", kind: "const", childItems: [{ text: "c", kind: "const" }], }, ], }, ], }); verify.navigationBar([ { text: "", kind: "script", childItems: [ { text: "a", kind: "const" }, ] }, { text: "a", kind: "const", childItems: [ { text: "b", kind: "const"}, ], indent: 1, }, { text: "b", kind: "const", childItems: [ { text: "c", kind: "const" }, ], indent: 2, } ]);