Skip to content

Commit 2489158

Browse files
authored
Merge pull request #4246 from leo-labs/suppress-codelense-getenumerator
Suppress codelens for IEnumerable.GetEnumerator
2 parents ed4c3ad + 5e890a7 commit 2489158

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/features/codeLensProvider.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -242,7 +242,8 @@ const filteredSymbolNames: { [name: string]: boolean } = {
242242
'Finalize': true,
243243
'GetHashCode': true,
244244
'ToString': true,
245-
'Dispose': true
245+
'Dispose': true,
246+
'GetEnumerator': true,
246247
};
247248

248249
function isValidElementForReferencesCodeLens(element: Structure.CodeElement): boolean {

0 commit comments

Comments
 (0)