From 15218d7530544a814450dc7932d52f99560a5795 Mon Sep 17 00:00:00 2001 From: CHatingPython Date: Wed, 12 Aug 2026 23:05:37 +0200 Subject: [PATCH] feat(furvm): add frames function to executor --- furvm/include/furvm/executor.hpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/furvm/include/furvm/executor.hpp b/furvm/include/furvm/executor.hpp index 4a11511..e855bdd 100644 --- a/furvm/include/furvm/executor.hpp +++ b/furvm/include/furvm/executor.hpp @@ -5,7 +5,6 @@ #include "furvm/module.hpp" // IWYU pragma: keep #include "furvm/thing.hpp" // IWYU pragma: keep -#include #include #include #include @@ -103,6 +102,8 @@ public: * @return The frame. */ frame frame() const; + + const std::stack& frames() const { return m_frames; } public: /** * @brief Pushes a thing handle onto the stack.