using Jint.Native;
using Jint.Runtime.Interpreter.Expressions;
namespace Jint.Runtime.Interpreter.Statements;
///
/// http://www.ecma-international.org/ecma-262/5.1/#sec-12.6.1
///
internal sealed class JintDoWhileStatement : JintStatement
{
private ProbablyBlockStatement _body;
private string? _labelSetName;
private JintExpression _test = null!;
public JintDoWhileStatement(DoWhileStatement statement) : base(statement)
{
}
protected override void Initialize(EvaluationContext context)
{
_body = new ProbablyBlockStatement(_statement.Body);
_test = JintExpression.Build(_statement.Test);
_labelSetName = _statement.LabelSet?.Name;
}
protected override Completion ExecuteInternal(EvaluationContext context)
{
JsValue v = JsValue.Undefined;
bool iterating;
do
{
var completion = _body.Execute(context);
if (!completion.Value.IsEmpty)
{
v = completion.Value;
}
if (completion.Type != CompletionType.Continue || !string.Equals(context.Target, _labelSetName, StringComparison.Ordinal))
{
if (completion.Type == CompletionType.Break && (context.Target == null || string.Equals(context.Target, _labelSetName, StringComparison.Ordinal)))
{
return new Completion(CompletionType.Normal, v, _statement);
}
if (completion.Type != CompletionType.Normal)
{
return completion;
}
}
if (context.DebugMode)
{
context.Engine.Debugger.OnStep(_test._expression);
}
iterating = TypeConverter.ToBoolean(_test.GetValue(context));
} while (iterating);
return new Completion(CompletionType.Normal, v, ((JintStatement) this)._statement);
}
}