Const
The exit point is an explicit break call (or an alias of it)
break
The exit point is the implicit (last executed expression of a function/block)
The exit point is an explicit next call (or an alias of it)
next
The exit point is an explicit return call (or an alias of it)
return
The exit point is an explicit
break
call (or an alias of it)