Skip to content

Commit 132b746

Browse files
committed
Covnert to Doc Comment
1 parent 2abf906 commit 132b746

1 file changed

Lines changed: 7 additions & 5 deletions

File tree

src/compiler/checker.ts

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3624,11 +3624,13 @@ namespace ts {
36243624
return signatures;
36253625
}
36263626

3627-
// The base constructor of a class can resolve to
3628-
// undefinedType if the class has no extends clause,
3629-
// unknownType if an error occurred during resolution of the extends expression,
3630-
// nullType if the extends expression is the null value, or
3631-
// an object type with at least one construct signature.
3627+
/**
3628+
* The base constructor of a class can resolve to
3629+
* * undefinedType if the class has no extends clause,
3630+
* * unknownType if an error occurred during resolution of the extends expression,
3631+
* * nullType if the extends expression is the null value, or
3632+
* * an object type with at least one construct signature.
3633+
*/
36323634
function getBaseConstructorTypeOfClass(type: InterfaceType): Type {
36333635
if (!type.resolvedBaseConstructorType) {
36343636
const baseTypeNode = getBaseTypeNodeOfClass(type);

0 commit comments

Comments
 (0)