authorgravatar for marc@tiehu.isMarc Tiehuis <marc@tiehu.is> 2018-05-22 15:34:17+12:00
committergravatar for marc@tiehu.isMarc Tiehuis <marc@tiehu.is> 2018-05-22 15:34:17+12:00
log4f4afe186d854fb81aca7db4862c366271f24d06
treead12b2101bbdd538142ceac0dfb7aa03517a3373
parent698c52e7961a78e68be39f4a6216f5c3d55f4f3f

Make JsonParser public


1 files changed, 1 insertions(+), 1 deletions(-)

std/json.zig+1-1
...@@ -1053,7 +1053,7 @@ pub const Value = union(enum) {...@@ -1053,7 +1053,7 @@ pub const Value = union(enum) {
1053};1053};
10541054
1055// A non-stream JSON parser which constructs a tree of Value's.1055// A non-stream JSON parser which constructs a tree of Value's.
1056const JsonParser = struct {1056pub const JsonParser = struct {
1057 allocator: &Allocator,1057 allocator: &Allocator,
1058 state: State,1058 state: State,
1059 copy_strings: bool,1059 copy_strings: bool,