xo-interpreter: + VSM work in progress

This commit is contained in:
Roland Conybeare 2026-02-03 21:44:40 -05:00
commit dc88663271
10 changed files with 307 additions and 7 deletions

View file

@ -0,0 +1,20 @@
/** @file DApplyFrame.hpp
*
* @author Roland Conyberae, Feb 2026
**/
#pragma once
namespace xo {
namespace scm {
/** In virtual schematika machine (VSM):
* stack frame for interpreted apply expression
* (@ref DApplyExpr)
**/
class DApplyFrame {
obj<AGCObject>
};
}
}
/* end DApplyFrame.hpp */