Commit 4f4afe186d

Marc Tiehuis <marctiehuis@gmail.com>
2018-05-22 05:34:17
Make JsonParser public
1 parent 698c52e
Changed files (1)
std/json.zig
@@ -1053,7 +1053,7 @@ pub const Value = union(enum) {
 };
 
 // A non-stream JSON parser which constructs a tree of Value's.
-const JsonParser = struct {
+pub const JsonParser = struct {
     allocator: &Allocator,
     state: State,
     copy_strings: bool,