TypeScript/tests/cases/fourslash/navigationBarItemsEmptyConstructors.ts
2016-10-11 08:32:37 -07:00

48 lines
925 B
TypeScript

/// <reference path="fourslash.ts"/>
////class Test {
//// constructor() {
//// }
////}
verify.navigationTree({
"text": "<global>",
"kind": "script",
"childItems": [
{
"text": "Test",
"kind": "class",
"childItems": [
{
"text": "constructor",
"kind": "constructor"
}
]
}
]
});
verify.navigationBar([
{
"text": "<global>",
"kind": "script",
"childItems": [
{
"text": "Test",
"kind": "class"
}
]
},
{
"text": "Test",
"kind": "class",
"childItems": [
{
"text": "constructor",
"kind": "constructor"
}
],
"indent": 1
}
]);