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.
CodeRush Classic offers the following flow break icons:
Name | Icon | Description |
---|---|---|
Return | ![]() |
Is shown at the end of the return statement. Moves the cursor to the end of the current method. |
Throw Exception | ![]() |
Is shown at the end of the throw statement. Moves the cursor to the end of the current method. |
Continue | ![]() |
Is shown at the end of the continue statement. Moves the cursor to the beginning of the current loop. |
Break | ![]() |
Is shown at the end of the break statement. Moves the cursor to the code line following the current loop. |
Goto/Jump | ![]() |
Is shown at the end of the goto statement. Moves the cursor to the appropriate label. |
Yield Break | ![]() |
Is shown at the end of the yeld break statement. Moves the cursor to the end of the current method. |
Yield Return | ![]() |
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.