subrepo: subdir: "xo-interpreter2" merged: "e4c6ff57" upstream: origin: "git@github.com:Rconybea/xo-interpreter2.git" branch: "main" commit: "e4c6ff57" git-subrepo: version: "0.4.9" origin: "???" commit: "???"
20 lines
374 B
C++
20 lines
374 B
C++
/** @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 */
|