feat: minimal virtual machine / runtime port from ink-c
This commit is contained in:
parent
619eb3b338
commit
849908f251
5 changed files with 833 additions and 35 deletions
8
src/AstGen.zig
Normal file
8
src/AstGen.zig
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
const std = @import("std");
|
||||
const Ast = @import("./Ast.zig");
|
||||
const Story = @import("./Story.zig");
|
||||
|
||||
/// Perform code generation via tree-walk.
|
||||
pub fn generate(_: std.mem.Allocator, _: *const Ast) !Story {
|
||||
return error.OutOfMemory;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue