Make JsonParser public

This commit is contained in:
Marc Tiehuis 2018-05-22 15:34:17 +12:00
parent 698c52e796
commit 4f4afe186d

View File

@ -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,