We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 328ccb0 commit 51fb154Copy full SHA for 51fb154
src/providers/WorkspaceSymbolProvider.ts
@@ -58,7 +58,8 @@ export class WorkspaceSymbolProvider implements vscode.WorkspaceSymbolProvider {
58
return vscode.SymbolKind.Interface;
59
case "Class":
60
return vscode.SymbolKind.Class;
61
- default: // Property and Relationship
+ default:
62
+ // Property and Relationship
63
return vscode.SymbolKind.Property;
64
}
65
})();
0 commit comments