Skip to content

Commit b70132a

Browse files
committed
Fix linting errors
1 parent 835645c commit b70132a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/compiler/checker.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3781,7 +3781,7 @@ namespace ts {
37813781
enumType.symbol = symbol;
37823782
if (enumHasLiteralMembers(symbol)) {
37833783
const memberTypeList: Type[] = [];
3784-
const memberTypes: Map<EnumLiteralType> = {};
3784+
const memberTypes: Map<EnumLiteralType> = {};
37853785
for (const declaration of enumType.symbol.declarations) {
37863786
if (declaration.kind === SyntaxKind.EnumDeclaration) {
37873787
computeEnumMemberValues(<EnumDeclaration>declaration);
@@ -6131,8 +6131,8 @@ namespace ts {
61316131
relation: Map<RelationComparisonResult>,
61326132
errorNode: Node,
61336133
headMessage?: DiagnosticMessage,
6134-
containingMessageChain?: DiagnosticMessageChain): boolean
6135-
{
6134+
containingMessageChain?: DiagnosticMessageChain): boolean {
6135+
61366136
let errorInfo: DiagnosticMessageChain;
61376137
let sourceStack: ObjectType[];
61386138
let targetStack: ObjectType[];

0 commit comments

Comments
 (0)