/////** //// * This is a class. //// */ ////class /* But it has no name! */ { //// foo() {} ////} // Anonymous classes are still included. verify.navigationTree({ "text": "", "kind": "script", "childItems": [ { "text": "", "kind": "class", "childItems": [ { "text": "foo", "kind": "method" } ] } ] }); verify.navigationBar([ { "text": "", "kind": "script", "childItems": [ { "text": "", "kind": "class" } ] }, { "text": "", "kind": "class", "childItems": [ { "text": "foo", "kind": "method" } ], "indent": 1 } ]);