(parent: Node | undefined)
| 88 | } |
| 89 | |
| 90 | const isUnbracedControlFlow = (parent: Node | undefined): boolean => |
| 91 | parent !== undefined && new Set([ |
| 92 | "DoWhileStatement", |
| 93 | "ForInStatement", |
| 94 | "ForOfStatement", |
| 95 | "ForStatement", |
| 96 | "IfStatement", |
| 97 | "LabeledStatement", |
| 98 | "WhileStatement", |
| 99 | "WithStatement" |
| 100 | ]).has(parent.type) |
| 101 | |
| 102 | const assertionTarget = ( |
| 103 | source: string, |