blob: 3465cb3527ec271986685ef694a7476f7d5b0ff1 (
plain)
1
2
3
4
5
6
7
8
9
10
|
// See parse.zig for details.
const parser = @import("parser.zig");
const decoder = @import("decoder.zig");
const Value = @import("../value.zig").Value;
pub fn readCode(input: []const u8) Value {
return decoder.decode(parser.parse(input, .code));
}
|