Added option to parse number as integer, disabled by default

This commit is contained in:
jockus
2020-09-15 11:39:34 +01:00
parent 0cd681e6b7
commit 195dbd658d
3 changed files with 10 additions and 8 deletions
+1 -1
View File
@@ -4,7 +4,7 @@ import "core:mem"
// NOTE(bill): is_valid will not check for duplicate keys
is_valid :: proc(data: []byte, spec := Specification.JSON) -> bool {
p := make_parser(data, spec, mem.nil_allocator());
p := make_parser(data, spec, false, mem.nil_allocator());
if p.spec == Specification.JSON5 {
return validate_value(&p);
}