Skip to content

Commit 2a9636b

Browse files
address code style
1 parent 877977a commit 2a9636b

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

tests/baselines/reference/classExtendsInterfaceInExpression.errors.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ tests/cases/compiler/classExtendsInterfaceInExpression.ts(7,25): error TS2304: C
55
interface A {}
66

77
function factory(a: any): {new(): Object} {
8-
return null
8+
return null;
99
}
1010

1111
class C extends factory(A) {}

tests/baselines/reference/classExtendsInterfaceInExpression.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
interface A {}
33

44
function factory(a: any): {new(): Object} {
5-
return null
5+
return null;
66
}
77

88
class C extends factory(A) {}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
interface A {}
22

33
function factory(a: any): {new(): Object} {
4-
return null
4+
return null;
55
}
66

77
class C extends factory(A) {}

0 commit comments

Comments
 (0)