| 23 | public: |
| 24 | inline ag::Generator& GetBytecodeGenerator() { return m_gen; } |
| 25 | inline std::vector<uint8_t> GetBytecode() { return m_gen.Get().Get(); } |
| 26 | inline const std::vector<Variable>& GetGlobals() { return m_globals; } |
| 27 | inline const std::vector<Structure>& GetStructures() { return m_structures; } |
| 28 | inline const std::vector<Function>& GetFunctions() { return m_func; } |