(flowLabel *ast.FlowLabel)
| 1983 | } |
| 1984 | |
| 1985 | func (b *Binder) bindBreakOrContinueFlow(flowLabel *ast.FlowLabel) { |
| 1986 | if flowLabel != nil { |
| 1987 | b.addAntecedent(flowLabel, b.currentFlow) |
| 1988 | b.currentFlow = b.unreachableFlow |
| 1989 | b.hasFlowEffects = true |
| 1990 | } |
| 1991 | } |
| 1992 | |
| 1993 | func (b *Binder) bindTryStatement(node *ast.Node) { |
| 1994 | // We conservatively assume that *any* code in the try block can cause an exception, but we only need |
no test coverage detected