We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b5309d3 commit 83740a0Copy full SHA for 83740a0
include/Ark/VM/ScopeView.hpp
@@ -59,6 +59,14 @@ namespace Ark::internal
59
*/
60
bool pushBack(uint16_t id, const Value& val) noexcept;
61
62
+ /**
63
+ * @brief Insert one or more pairs at the beginning of the scope
64
+ * @details This can ONLY be called on the last known scope, otherwise it will override the data of the next scope!
65
+ *
66
+ * @param values
67
+ */
68
+ void insertFront(const std::vector<pair_t>& values) noexcept;
69
+
70
/**
71
* @brief Check if the scope maybe holds a specific symbol in memory
72
*
0 commit comments