Skip to content

Commit

Permalink
Use IterableIterator, not MapIterator
Browse files Browse the repository at this point in the history
  • Loading branch information
machty committed Jan 8, 2025
1 parent 59d2177 commit 03ebaac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/language-core/lib/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ export class FileMap<T> extends Map<string, T> {
super();
}

keys() {
keys(): IterableIterator<string> {
return this.originalFileNames.values();
}

Expand Down

0 comments on commit 03ebaac

Please sign in to comment.