TypeScript/tests/cases/fourslash/navigationBarItemsFunctionsBroken.ts

47 lines
902 B
TypeScript
Raw Normal View History

2014-09-18 02:40:32 +02:00
/// <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",
2016-06-16 22:20:12 +02:00
"childItems": [
{
"text": "<function>",
"kind": "function"
}
],
"indent": 1
}
]);