fix(furvm): improve executor flags

This commit is contained in:
2026-08-17 11:20:14 +02:00
parent 26d935e22a
commit 195d154474
2 changed files with 22 additions and 1 deletions
+9 -1
View File
@@ -83,6 +83,14 @@ public:
* @return The flags.
*/
executor_flags flags() const { return m_flags; }
bool done() const { return (m_flags & executor_flags::Done) == executor_flags::Done; }
bool suspended() const { return (m_flags & executor_flags::Suspended) == executor_flags::Suspended; }
void unsuspend() { m_flags = m_flags & ~executor_flags::Suspended; }
void clear_flags() { m_flags = m_frames.empty() ? executor_flags::Done : furvm::executor_flags{ 0 }; }
public:
/**
* @brief Pushes a new frame.
@@ -173,7 +181,7 @@ private:
private:
static bool compare_thing_types(const thing_type& lhs, const thing_type& rhs);
private:
executor_flags m_flags{}; // NOLINT(bugprone-invalid-enum-default-initialization)
executor_flags m_flags = executor_flags::Done;
context* m_context;
std::stack<frame> m_frames;