Operator continue can be used inside of loop (for, while, menu, foreach) for force finishing current loops` step and going to next one. You can't use this operator outside of loop.
The call ^continue(condition) is equivalent to ^if(condition){ ^continue[] }.