Skip to content

Commit c11969f

Browse files
committed
Mark returnFlowNode property as internal
1 parent 5f6d7f3 commit c11969f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/compiler/types.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -929,7 +929,7 @@ namespace ts {
929929
kind: SyntaxKind.Constructor;
930930
parent?: ClassDeclaration | ClassExpression;
931931
body?: FunctionBody;
932-
returnFlowNode?: FlowNode;
932+
/* @internal */ returnFlowNode?: FlowNode;
933933
}
934934

935935
/** For when we encounter a semicolon in a class declaration. ES6 allows these as class elements. */
@@ -3809,6 +3809,7 @@ namespace ts {
38093809
strict?: boolean;
38103810
strictFunctionTypes?: boolean; // Always combine with strict property
38113811
strictNullChecks?: boolean; // Always combine with strict property
3812+
strictPropertyInitialization?: boolean; // Always combine with strict property
38123813
/* @internal */ stripInternal?: boolean;
38133814
suppressExcessPropertyErrors?: boolean;
38143815
suppressImplicitAnyIndexErrors?: boolean;

0 commit comments

Comments
 (0)