diff options
| author | nsfisis <nsfisis@gmail.com> | 2026-01-25 18:16:24 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2026-01-25 18:16:24 +0900 |
| commit | 11ff1132c8116aef2296cc6ebd3c40b5e7e7b43f (patch) | |
| tree | 72d5f22d96e2430fe943ede11dc76c9c8dab3517 /src/jq/compile.zig | |
| parent | 48d9ec8aef4c3e7f3574346a6cf6a1fa3d725561 (diff) | |
| download | zgjq-11ff1132c8116aef2296cc6ebd3c40b5e7e7b43f.tar.gz zgjq-11ff1132c8116aef2296cc6ebd3c40b5e7e7b43f.tar.zst zgjq-11ff1132c8116aef2296cc6ebd3c40b5e7e7b43f.zip | |
implement string literals
Diffstat (limited to 'src/jq/compile.zig')
| -rw-r--r-- | src/jq/compile.zig | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/jq/compile.zig b/src/jq/compile.zig index fb2a691..78512b9 100644 --- a/src/jq/compile.zig +++ b/src/jq/compile.zig @@ -57,7 +57,12 @@ pub const Instr = union(Opcode) { pub fn deinit(self: Self, allocator: std.mem.Allocator) void { switch (self) { .object_key => |key| allocator.free(key), - .literal => |value| allocator.destroy(value), + .literal => |value| { + if (value.* == .string) { + allocator.free(value.string); + } + allocator.destroy(value); + }, else => {}, } } |
