mirror of
https://github.com/microsoft/TypeScript.git
synced 2026-06-30 04:16:48 -05:00
remove check on property assignment
This commit is contained in:
@@ -610,7 +610,7 @@ namespace ts.NavigationBar {
|
||||
}
|
||||
// See if it is a property assignment, and if so use the property name
|
||||
else if (node.parent.kind === SyntaxKind.PropertyAssignment && (node.parent as PropertyAssignment).name) {
|
||||
return nodeText((node.parent as PropertyAssignment).name).replace(whiteSpaceRegex, "#");
|
||||
return nodeText((node.parent as PropertyAssignment).name);
|
||||
}
|
||||
// Default exports are named "default"
|
||||
else if (getModifierFlags(node) & ModifierFlags.Default) {
|
||||
|
||||
@@ -205,7 +205,6 @@
|
||||
//// function unterminatedListIndentation(a,
|
||||
////{| "indent": 14 , "baseIndentSize": 10 |}
|
||||
|
||||
debugger;
|
||||
test.markers().forEach(marker => {
|
||||
verify.indentationAtPositionIs(marker.fileName, marker.position, marker.data.indent, ts.IndentStyle.Smart, marker.data.baseIndentSize);
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user