| 26 | class CallingFrame { |
| 27 | public: |
| 28 | CallingFrame(Executor::Executor *E, |
| 29 | const Instance::ModuleInstance *M) noexcept |
| 30 | : Exec(E), Module(M) {} |
| 31 | |
| 32 | /// Get the current executor. |
| 33 | Executor::Executor *getExecutor() const noexcept { return Exec; } |
nothing calls this directly
no outgoing calls
no test coverage detected