Skip to content

Commit c12ecc4

Browse files
committed
Suppress codelens for IEnumerable.GetEnumerator
1 parent 73f4de7 commit c12ecc4

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)