.github /workflows
Add a golangci-lint Github Action
2021-02-01 06:37:26 +09:00
benchmarks
Add benchmark for encoding of bool type
2021-01-31 01:49:35 +09:00
cmd /generator
Remove InterfaceEnd operation
2021-01-24 23:04:54 +09:00
.gitignore
Refactor file layout for coverage
2021-01-16 22:16:26 +09:00
LICENSE
Initial commit
2020-04-19 18:32:37 +09:00
Makefile
Update Makefile
2021-01-16 22:18:44 +09:00
README.md
Update README.md
2020-12-30 20:23:19 +09:00
codecov.yaml
Add codecov.yaml
2020-12-30 20:15:04 +09:00
compact.go
Fix MarshalJSON/MarshalText
2020-08-18 13:36:36 +09:00
cover_float32_test.go
Add test cases for float32/float64 type
2021-01-19 20:41:14 +09:00
cover_float64_test.go
Add test cases for float32/float64 type
2021-01-19 20:41:14 +09:00
cover_helper_test.go
Add compatible test
2021-01-19 14:01:43 +09:00
cover_int8_test.go
Add compatible test
2021-01-19 14:01:43 +09:00
cover_int16_test.go
Add compatible test
2021-01-19 14:01:43 +09:00
cover_int32_test.go
Add compatible test
2021-01-19 14:01:43 +09:00
cover_int64_test.go
Add compatible test
2021-01-19 14:01:43 +09:00
cover_int_test.go
Add compatible test
2021-01-19 14:01:43 +09:00
cover_string_test.go
Add StructFieldOmitEmptyStringPtr
2021-01-22 18:19:54 +09:00
cover_uint8_test.go
Add test cases for unsigned integer types
2021-01-19 14:54:27 +09:00
cover_uint16_test.go
Add test cases for unsigned integer types
2021-01-19 14:54:27 +09:00
cover_uint32_test.go
Add test cases for unsigned integer types
2021-01-19 14:54:27 +09:00
cover_uint64_test.go
Add test cases for unsigned integer types
2021-01-19 14:54:27 +09:00
cover_uint_test.go
Add test cases for unsigned integer types
2021-01-19 14:54:27 +09:00
decode.go
Fix read timing and test case
2020-12-07 11:40:03 +09:00
decode_anonymous_field.go
Remove debug log
2020-12-24 18:45:04 +09:00
decode_array.go
Fix array decoder
2020-12-24 23:14:58 +09:00
decode_bool.go
Fix error case
2020-12-24 18:30:11 +09:00
decode_bytes.go
Fix decoding of []byte type
2020-12-24 19:36:49 +09:00
decode_compile.go
Fix []byte with unmarshaler
2020-12-24 14:26:18 +09:00
decode_context.go
Fix skipValue
2020-11-27 17:41:47 +09:00
decode_float.go
Fix streaming decoder for float value
2020-12-27 20:42:43 +09:00
decode_int.go
Fix UnmarshalTypeError
2020-12-24 17:47:53 +09:00
decode_interface.go
Fix decoding of escape char at UnmarshalJSON
2021-01-30 02:03:31 +09:00
decode_map.go
Fix decoding of embeded struct
2020-12-22 21:55:59 +09:00
decode_number.go
Fix stream decoding
2020-12-05 22:27:33 +09:00
decode_ptr.go
Assign nil at null value
2020-12-23 01:29:13 +09:00
decode_slice.go
Merge branch 'master' of github.com:goccy/go-json into feature/fix-decoder
2020-12-23 01:37:54 +09:00
decode_stream.go
Add test cases
2020-12-24 20:08:27 +09:00
decode_string.go
Fix []byte with unmarshaler
2020-12-24 14:26:18 +09:00
decode_struct.go
Fix decoding of `null` bytes for struct type
2021-01-22 20:06:37 +09:00
decode_test.go
Fix decoding of escape char at UnmarshalJSON
2021-01-30 02:03:31 +09:00
decode_uint.go
Fix overflow handling for int/uint decoder
2020-12-21 15:48:57 +09:00
decode_unmarshal_json.go
Copy buffer to decode of UnmarshalJSON
2021-01-22 14:01:01 +09:00
decode_unmarshal_text.go
Add error handling for unmarshal text
2020-12-24 18:45:26 +09:00
decode_wrapped_string.go
Fix overflow handling for int/uint decoder
2020-12-21 15:48:57 +09:00
encode.go
Fix accepatable address range
2021-01-31 02:30:48 +09:00
encode_compile.go
Fix recursive call
2021-01-15 16:28:20 +09:00
encode_context.go
Improve performance of encoding map type ( escaped and not indented )
2021-01-25 00:23:07 +09:00
encode_int.go
Replace int/uint encoding implementation
2020-12-20 04:02:03 +09:00
encode_map112.go
Fix build
2020-04-26 12:49:54 +09:00
encode_map113.go
Fix build
2020-04-26 12:49:54 +09:00
encode_opcode.go
Fix interface operation
2021-01-24 23:27:23 +09:00
encode_optype.go
Remove InterfaceEnd operation
2021-01-24 23:04:54 +09:00
encode_string.go
Expand source for string encoding
2020-12-20 04:02:03 +09:00
encode_test.go
Omit Parallel execution of test case
2020-12-24 20:38:42 +09:00
encode_vm.go
Fix encoding of type which implemented MarshalJSON
2021-01-30 01:14:22 +09:00
encode_vm_escaped.go
Fix encoding of type which implemented MarshalJSON
2021-01-30 01:14:22 +09:00
encode_vm_escaped_indent.go
Fix encoding of type which implemented MarshalJSON
2021-01-30 01:14:22 +09:00
encode_vm_indent.go
Fix encoding of type which implemented MarshalJSON
2021-01-30 01:14:22 +09:00
error.go
Fix error case
2020-12-24 18:30:11 +09:00
example_marshaling_test.go
Add examples
2020-08-27 21:02:44 +09:00
example_test.go
Omit map example because currently cannot sort map by keys
2020-08-27 21:13:36 +09:00
example_text_marshaling_test.go
Fix pointer fields
2020-09-17 21:50:27 +09:00
export_test.go
Add test cases for MarshalJSON and MarshalText
2020-08-19 00:32:45 +09:00
go.mod
Removed dependency on xerrors
2020-05-09 01:49:37 +09:00
go.sum
Removed dependency on xerrors
2020-05-09 01:49:37 +09:00
helper_test.go
Fix null value for struct field
2020-08-08 13:20:42 +09:00
indent.go
Fix encoding for Indent/MarshalIndent
2020-08-27 21:01:53 +09:00
json.go
Fix UnmarshalJSON for RawMessage type
2021-01-30 01:47:31 +09:00
json_test.go
Omit Parallel execution of test case
2020-12-24 20:38:42 +09:00
number_test.go
Add test cases
2020-08-25 00:56:23 +09:00
option.go
Add option.go
2020-09-16 18:23:43 +09:00
rtype.go
Fix MarshalJSON/MarshalText
2020-08-18 13:36:36 +09:00
stream_test.go
Fix streaming decoder for float value
2020-12-27 20:42:43 +09:00
struct_field.go
Fix stream encoding
2020-09-17 01:26:39 +09:00
tagkey_test.go
Fix test case
2020-09-17 10:53:39 +09:00