8000 Made 'expression' non-optional in 'CaseClause'. · johnangularjs/TypeScript@cc5334e · GitHub
[go: up one dir, main page]

Skip to content

Commit cc5334e

Browse files
Made 'expression' non-optional in 'CaseClause'.
1 parent 1e64f16 commit cc5334e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/compiler/types.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1195,7 +1195,7 @@ namespace ts {
11951195

11961196
// @kind(SyntaxKind.CaseClause)
11971197
export interface CaseClause extends Node {
1198-
expression?: Expression;
1198+
expression: Expression;
11991199
statements: NodeArray<Statement>;
12001200
}
12011201

0 commit comments

Comments
 (0)
0