1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- using Jint.Native;
- using Jint.Runtime.Interpreter.Expressions;
- namespace Jint.Runtime.Interpreter.Statements;
- /// <summary>
- /// http://www.ecma-international.org/ecma-262/5.1/#sec-12.6.1
- /// </summary>
- internal sealed class JintDoWhileStatement : JintStatement<DoWhileStatement>
- {
- 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);
- }
- }
|