visitContinueStatement method
Implementation
@override
Object? visitContinueStatement(ContinueStatement node) {
final label = node.label?.name;
Logger.debug(
"[ContinueStatement] Throwing ContinueException (label: $label)");
throw ContinueException(label);
}