feat: error handling, better prelude, double linked lists usage etc

This commit is contained in:
2026-01-02 22:06:56 +01:00
parent a453603b9b
commit 6176d549c1
10 changed files with 148 additions and 65 deletions

View File

@@ -52,7 +52,7 @@ namespace IR
public:
const StringView &name() const { return m_name; }
const Block &body() const { return m_body; }
Block &body() { return m_body; }
const View<StringView> &params() const { return m_params; }
private: