File tree Expand file tree Collapse file tree 2 files changed +14
-14
lines changed
tests/baselines/reference/api Expand file tree Collapse file tree 2 files changed +14
-14
lines changed Original file line number Diff line number Diff line change @@ -1672,6 +1672,11 @@ declare namespace ts {
1672
1672
Label = 12 ,
1673
1673
Condition = 96
1674
1674
}
1675
+ export type FlowNode = AfterFinallyFlow | PreFinallyFlow | FlowStart | FlowLabel | FlowAssignment | FlowCall | FlowCondition | FlowSwitchClause | FlowArrayMutation ;
1676
+ export interface FlowNodeBase {
1677
+ flags : FlowFlags ;
1678
+ id : number | undefined ;
1679
+ }
1675
1680
export interface FlowLock {
1676
1681
locked ?: boolean ;
1677
1682
}
@@ -1682,13 +1687,8 @@ declare namespace ts {
1682
1687
antecedent : FlowNode ;
1683
1688
lock : FlowLock ;
1684
1689
}
1685
- export type FlowNode = AfterFinallyFlow | PreFinallyFlow | FlowStart | FlowLabel | FlowAssignment | FlowCall | FlowCondition | FlowSwitchClause | FlowArrayMutation ;
1686
- export interface FlowNodeBase {
1687
- flags : FlowFlags ;
1688
- id ?: number ;
1689
- }
1690
1690
export interface FlowStart extends FlowNodeBase {
1691
- container ?: FunctionExpression | ArrowFunction | MethodDeclaration ;
1691
+ node ?: FunctionExpression | ArrowFunction | MethodDeclaration ;
1692
1692
}
1693
1693
export interface FlowLabel extends FlowNodeBase {
1694
1694
antecedents : FlowNode [ ] | undefined ;
@@ -1702,7 +1702,7 @@ declare namespace ts {
1702
1702
antecedent : FlowNode ;
1703
1703
}
1704
1704
export interface FlowCondition extends FlowNodeBase {
1705
- expression : Expression ;
1705
+ node : Expression ;
1706
1706
antecedent : FlowNode ;
1707
1707
}
1708
1708
export interface FlowSwitchClause extends FlowNodeBase {
Original file line number Diff line number Diff line change @@ -1672,6 +1672,11 @@ declare namespace ts {
1672
1672
Label = 12 ,
1673
1673
Condition = 96
1674
1674
}
1675
+ export type FlowNode = AfterFinallyFlow | PreFinallyFlow | FlowStart | FlowLabel | FlowAssignment | FlowCall | FlowCondition | FlowSwitchClause | FlowArrayMutation ;
1676
+ export interface FlowNodeBase {
1677
+ flags : FlowFlags ;
1678
+ id : number | undefined ;
1679
+ }
1675
1680
export interface FlowLock {
1676
1681
locked ?: boolean ;
1677
1682
}
@@ -1682,13 +1687,8 @@ declare namespace ts {
1682
1687
antecedent : FlowNode ;
1683
1688
lock : FlowLock ;
1684
1689
}
1685
- export type FlowNode = AfterFinallyFlow | PreFinallyFlow | FlowStart | FlowLabel | FlowAssignment | FlowCall | FlowCondition | FlowSwitchClause | FlowArrayMutation ;
1686
- export interface FlowNodeBase {
1687
- flags : FlowFlags ;
1688
- id ?: number ;
1689
- }
1690
1690
export interface FlowStart extends FlowNodeBase {
1691
- container ?: FunctionExpression | ArrowFunction | MethodDeclaration ;
1691
+ node ?: FunctionExpression | ArrowFunction | MethodDeclaration ;
1692
1692
}
1693
1693
export interface FlowLabel extends FlowNodeBase {
1694
1694
antecedents : FlowNode [ ] | undefined ;
@@ -1702,7 +1702,7 @@ declare namespace ts {
1702
1702
antecedent : FlowNode ;
1703
1703
}
1704
1704
export interface FlowCondition extends FlowNodeBase {
1705
- expression : Expression ;
1705
+ node : Expression ;
1706
1706
antecedent : FlowNode ;
1707
1707
}
1708
1708
export interface FlowSwitchClause extends FlowNodeBase {
You can’t perform that action at this time.
0 commit comments