Skip to main content

Flow Break Icons

Flow break icons visually indicate the presence of flow break keywords. These icons appear at the end of code lines that can alter code execution flow.

veFlowBreakIcon

 

CodeRush Classic offers the following flow break icons:

Name Icon Description
Return fbiReturn Is shown at the end of the return statement. Moves the cursor to the end of the current method.
Throw Exception fbiException Is shown at the end of the throw statement. Moves the cursor to the end of the current method.
Continue fbiContinue Is shown at the end of the continue statement. Moves the cursor to the beginning of the current loop.
Break fbiBreak Is shown at the end of the break statement. Moves the cursor to the code line following the current loop.
Goto/Jump fbiJump Is shown at the end of the goto statement. Moves the cursor to the appropriate label.
Yield Break fbYieldBreak Is shown at the end of the yeld break statement. Moves the cursor to the end of the current method.
Yield Return fbYieldReturn Is shown at the end of the yield return statement. Moves the cursor to the end of the current method.

For more information, see Flow Break Evaluation.