Upsilon/Upsilon/Binder/BoundStatements/BoundStatement.cs

20 lines
555 B
C#
Raw Permalink Normal View History

2019-02-13 17:10:39 +00:00
using System.Collections;
using Upsilon.Evaluator;
using Upsilon.Text;
namespace Upsilon.Binder
{
public abstract class BoundStatement : BoundNode
{
protected BoundStatement(TextSpan span) : base(span)
{
}
2018-12-11 17:31:54 +00:00
internal bool HasBreakpoint { get; set; }
internal abstract void Evaluate(EvaluationScope scope, Diagnostics diagnostics, ref EvaluationState state);
2019-02-13 17:10:39 +00:00
internal abstract IEnumerator EvaluateCoroutine(EvaluationScope scope, Diagnostics diagnostics,
EvaluationState state);
}
}