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

36 lines
626 B
TypeScript

/// <reference path="fourslash.ts"/>
////enum E {
//// // No nav bar entry for this
//// [Symbol.isRegExp] = 0
////}
verify.navigationTree({
"text": "<global>",
"kind": "script",
"childItems": [
{
"text": "E",
"kind": "enum"
}
]
});
verify.navigationBar([
{
"text": "<global>",
"kind": "script",
"childItems": [
{
"text": "E",
"kind": "enum"
}
]
},
{
"text": "E",
"kind": "enum",
"indent": 1
}
]);