CLanguage by praeclarum

<PackageReference Include="CLanguage" Version="0.13.18" />

 ContinueStatement

public class ContinueStatement : Statement
using CLanguage.Compiler; using CLanguage.Interpreter; using System.Runtime.CompilerServices; namespace CLanguage.Syntax { public class ContinueStatement : Statement { public override bool AlwaysReturns => false; [System.Runtime.CompilerServices.NullableContext(1)] protected override void DoEmit(EmitContext ec) { if (ec.Loop != null) ec.Emit(OpCode.Jump, ec.Loop.ContinueLabel); else ec.Report.Error(139, "No enclosing loop out of which to continue"); } } }