TypeScript/tests/cases/fourslash/navigationBarFunctionPrototypeBroken.ts
Jesse Trinity fd6fbdf7fe
Show more items in the navbar (#33040)
* show more items in navbar

* fixed missing node kind for property assignments

* updated navBarNestedCommonJsExports test

* updated navigationBarMerging_grandchildren test

* updated navigationBarItemsFunctions test

* updated navigationBarAnonymousClassAndFunctionExpressions test

* updated navigationBarFunctionIndirectlyInVariableDeclaration test

* updated navigationBarInitializerSpans test

* updated navigationBarItemsPropertiesDefinedInConstructors test

* updated tests

* change nav icon for properties with function-like initializers

* add test case for binding element with function-like initializer

* add navigationBarNestedObjectLiterals test

* add navigationBarFunctionLikePropertyAssignments test

* made some silly names less silly (?)

* added SpreadAssignments and ShorthandPropertyAssignments

* new wording for primary menu items
2019-09-11 15:54:27 -07:00

190 lines
3.2 KiB
TypeScript

/// <reference path="fourslash.ts"/>
// @Filename: foo.js
////function A() {}
////A. // Started typing something here
////A.prototype.a = function() { };
////G. // Started typing something here
////A.prototype.a = function() { };
verify.navigationTree({
"text": "<global>",
"kind": "script",
"spans": [
{
"start": 0,
"length": 151
}
],
"childItems": [
{
"text": "G",
"kind": "method",
"spans": [
{
"start": 84,
"length": 66
}
],
"nameSpan": {
"start": 84,
"length": 1
},
"childItems": [
{
"text": "A",
"kind": "method",
"spans": [
{
"start": 84,
"length": 66
}
],
"nameSpan": {
"start": 120,
"length": 1
},
"childItems": [
{
"text": "a",
"kind": "function",
"spans": [
{
"start": 136,
"length": 14
}
],
"nameSpan": {
"start": 132,
"length": 1
}
}
]
}
]
},
{
"text": "A",
"kind": "class",
"spans": [
{
"start": 0,
"length": 82
}
],
"nameSpan": {
"start": 9,
"length": 1
},
"childItems": [
{
"text": "constructor",
"kind": "constructor",
"spans": [
{
"start": 0,
"length": 15
}
]
},
{
"text": "A",
"kind": "method",
"spans": [
{
"start": 16,
"length": 66
}
],
"nameSpan": {
"start": 52,
"length": 1
},
"childItems": [
{
"text": "a",
"kind": "function",
"spans": [
{
"start": 68,
"length": 14
}
],
"nameSpan": {
"start": 64,
"length": 1
}
}
]
}
]
}
]
}, { checkSpans: true });
verify.navigationBar([
{
"text": "<global>",
"kind": "script",
"childItems": [
{
"text": "G",
"kind": "method"
},
{
"text": "A",
"kind": "class"
}
]
},
{
"text": "G",
"kind": "method",
"childItems": [
{
"text": "A",
"kind": "method"
}
],
"indent": 1
},
{
"text": "A",
"kind": "method",
"childItems": [
{
"text": "a",
"kind": "function"
}
],
"indent": 2
},
{
"text": "A",
"kind": "class",
"childItems": [
{
"text": "constructor",
"kind": "constructor"
},
{
"text": "A",
"kind": "method"
}
],
"indent": 1
},
{
"text": "A",
"kind": "method",
"childItems": [
{
"text": "a",
"kind": "function"
}
],
"indent": 2
},
]);