File tree Expand file tree Collapse file tree 2 files changed +4
-18
lines changed
tests/baselines/reference/api Expand file tree Collapse file tree 2 files changed +4
-18
lines changed Original file line number Diff line number Diff line change @@ -1697,13 +1697,10 @@ declare namespace ts {
1697
1697
Shared = 2048 ,
1698
1698
PreFinally = 4096 ,
1699
1699
AfterFinally = 8192 ,
1700
- Present = 16384 ,
1701
- Missing = 32768 ,
1702
1700
Label = 12 ,
1703
- Condition = 96 ,
1704
- OptionalChain = 49152
1701
+ Condition = 96
1705
1702
}
1706
- export type FlowNode = AfterFinallyFlow | PreFinallyFlow | FlowStart | FlowLabel | FlowAssignment | FlowCall | FlowCondition | FlowOptionalChain | FlowSwitchClause | FlowArrayMutation ;
1703
+ export type FlowNode = AfterFinallyFlow | PreFinallyFlow | FlowStart | FlowLabel | FlowAssignment | FlowCall | FlowCondition | FlowSwitchClause | FlowArrayMutation ;
1707
1704
export interface FlowNodeBase {
1708
1705
flags : FlowFlags ;
1709
1706
id ?: number ;
@@ -1736,10 +1733,6 @@ declare namespace ts {
1736
1733
node : Expression ;
1737
1734
antecedent : FlowNode ;
1738
1735
}
1739
- export interface FlowOptionalChain extends FlowNodeBase {
1740
- node : Expression ;
1741
- antecedent : FlowNode ;
1742
- }
1743
1736
export interface FlowSwitchClause extends FlowNodeBase {
1744
1737
switchStatement : SwitchStatement ;
1745
1738
clauseStart : number ;
Original file line number Diff line number Diff line change @@ -1697,13 +1697,10 @@ declare namespace ts {
1697
1697
Shared = 2048 ,
1698
1698
PreFinally = 4096 ,
1699
1699
AfterFinally = 8192 ,
1700
- Present = 16384 ,
1701
- Missing = 32768 ,
1702
1700
Label = 12 ,
1703
- Condition = 96 ,
1704
- OptionalChain = 49152
1701
+ Condition = 96
1705
1702
}
1706
- export type FlowNode = AfterFinallyFlow | PreFinallyFlow | FlowStart | FlowLabel | FlowAssignment | FlowCall | FlowCondition | FlowOptionalChain | FlowSwitchClause | FlowArrayMutation ;
1703
+ export type FlowNode = AfterFinallyFlow | PreFinallyFlow | FlowStart | FlowLabel | FlowAssignment | FlowCall | FlowCondition | FlowSwitchClause | FlowArrayMutation ;
1707
1704
export interface FlowNodeBase {
1708
1705
flags : FlowFlags ;
1709
1706
id ?: number ;
@@ -1736,10 +1733,6 @@ declare namespace ts {
1736
1733
node : Expression ;
1737
1734
antecedent : FlowNode ;
1738
1735
}
1739
- export interface FlowOptionalChain extends FlowNodeBase {
1740
- node : Expression ;
1741
- antecedent : FlowNode ;
1742
- }
1743
1736
export interface FlowSwitchClause extends FlowNodeBase {
1744
1737
switchStatement : SwitchStatement ;
1745
1738
clauseStart : number ;
You can’t perform that action at this time.
0 commit comments