Skip to content

Commit aca0bb9

Browse files
committed
Fix lint on master
1 parent 64c3fca commit aca0bb9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/compiler/checker.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33314,7 +33314,7 @@ namespace ts {
3331433314

3331533315
// Modifiers are never allowed on properties except for 'async' on a method declaration
3331633316
if (prop.modifiers) {
33317-
for (const mod of prop.modifiers!) { // TODO: GH#19955
33317+
for (const mod of prop.modifiers) {
3331833318
if (mod.kind !== SyntaxKind.AsyncKeyword || prop.kind !== SyntaxKind.MethodDeclaration) {
3331933319
grammarErrorOnNode(mod, Diagnostics._0_modifier_cannot_be_used_here, getTextOfNode(mod));
3332033320
}

0 commit comments

Comments
 (0)