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

47 lines
902 B
TypeScript

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