Upsilon/Upsilon/Binder/BoundStatements/BoundBreakStatement.cs

32 lines
845 B
C#
Raw Normal View History

2019-02-13 17:10:39 +00:00
using System.Collections;
using System.Collections.Generic;
using Upsilon.Evaluator;
using Upsilon.Text;
2018-11-23 14:27:48 +00:00
namespace Upsilon.Binder
{
public class BoundBreakStatement : BoundStatement
{
public BoundBreakStatement(TextSpan span) : base(span)
{
}
2018-11-23 14:27:48 +00:00
public override BoundKind Kind => BoundKind.BoundBreakStatement;
2019-01-17 12:56:53 +00:00
public override IEnumerable<BoundNode> GetChildren()
{
yield break;
}
internal override void Evaluate(EvaluationScope scope, Diagnostics diagnostics, ref EvaluationState state)
{
state.HasBroken = true;
}
2019-02-13 17:10:39 +00:00
internal override IEnumerator EvaluateCoroutine(EvaluationScope scope, Diagnostics diagnostics, EvaluationState state)
{
state.HasBroken = true;
yield break;
}
2018-11-23 14:27:48 +00:00
}
}