Skip to content

Commit 3b12284

Browse files
authored
fixed code duplication (#48425)
* fixed code duplication * updated baselines
1 parent 9d2f72b commit 3b12284

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

src/compiler/types.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3458,7 +3458,6 @@ namespace ts {
34583458
| FlowStart
34593459
| FlowLabel
34603460
| FlowAssignment
3461-
| FlowCall
34623461
| FlowCondition
34633462
| FlowSwitchClause
34643463
| FlowArrayMutation

tests/baselines/reference/api/tsserverlibrary.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1983,7 +1983,7 @@ declare namespace ts {
19831983
Label = 12,
19841984
Condition = 96
19851985
}
1986-
export type FlowNode = FlowStart | FlowLabel | FlowAssignment | FlowCall | FlowCondition | FlowSwitchClause | FlowArrayMutation | FlowCall | FlowReduceLabel;
1986+
export type FlowNode = FlowStart | FlowLabel | FlowAssignment | FlowCondition | FlowSwitchClause | FlowArrayMutation | FlowCall | FlowReduceLabel;
19871987
export interface FlowNodeBase {
19881988
flags: FlowFlags;
19891989
id?: number;

tests/baselines/reference/api/typescript.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1983,7 +1983,7 @@ declare namespace ts {
19831983
Label = 12,
19841984
Condition = 96
19851985
}
1986-
export type FlowNode = FlowStart | FlowLabel | FlowAssignment | FlowCall | FlowCondition | FlowSwitchClause | FlowArrayMutation | FlowCall | FlowReduceLabel;
1986+
export type FlowNode = FlowStart | FlowLabel | FlowAssignment | FlowCondition | FlowSwitchClause | FlowArrayMutation | FlowCall | FlowReduceLabel;
19871987
export interface FlowNodeBase {
19881988
flags: FlowFlags;
19891989
id?: number;

0 commit comments

Comments
 (0)