8000 Fix lint · fleurdeswift/TypeScript@d5c9a0b · GitHub
[go: up one dir, main page]

Skip to content

Commit d5c9a0b

Browse files
committed
Fix lint
1 parent cb472f2 commit d5c9a0b

File tree

1 8000 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
@@ -11037,7 +11037,7 @@ namespace ts {
1103711037
case SyntaxKind.MethodDeclaration:
1103811038
case SyntaxKind.MethodSignature:
1103911039
const parent = <SignatureDeclaration>node.parent;
11040-
if(node === parent.type) {
11040+
if (node === parent.type) {
1104111041
return parent;
1104211042
}
1104311043
}

0 commit comments

Comments
 (0)
0