Merge branch 'master' into new-opcodes

This commit is contained in:
Michael Hansen
2025-07-02 07:56:28 -07:00
committed by GitHub
7 changed files with 126 additions and 2 deletions

View File

@@ -30,6 +30,11 @@ public:
{
if (m_ptr > -1)
m_stack[m_ptr--] = nullptr;
else {
#ifdef BLOCK_DEBUG
fprintf(stderr, "pop from empty stack\n");
#endif
}
}
PycRef<ASTNode> top(int i = 1) const