TypeScript/tests/cases/fourslash/navigationBarWithLocalVariables.ts
2020-05-08 17:34:41 +08:00

24 lines
454 B
TypeScript

/// <reference path="fourslash.ts"/>
//// function x(){
//// const x = Object()
//// x.foo = ""
//// }
verify.navigationTree({
"text": "<global>",
"kind": "script",
"childItems": [
{
"text": "x",
"kind": "function",
"childItems": [
{
"text": "x",
"kind": "const"
}
]
}
]
});