1
0
mirror of https://github.com/json-iterator/go.git synced 2025-04-11 11:12:03 +02:00
This commit is contained in:
Tao Wen 2017-06-17 21:11:23 +08:00
parent 55fc498d27
commit 0195110b5b
10 changed files with 14 additions and 16 deletions

View File

@ -46,7 +46,6 @@ func ExampleUnmarshal() {
// [{Name:Platypus Order:Monotremata} {Name:Quoll Order:Dasyuromorphia}]
}
func ExampleMarshalWithBestPerformance() {
type ColorGroup struct {
ID int
@ -88,4 +87,4 @@ func ExampleUnmarshalWithBestPerformance() {
fmt.Printf("%+v", animals)
// Output:
// [{Name:Platypus Order:Monotremata} {Name:Quoll Order:Dasyuromorphia}]
}
}

View File

@ -8,7 +8,7 @@ import (
type arrayLazyAny struct {
baseAny
cfg *frozenConfig
cfg *frozenConfig
buf []byte
err error
cache []Any

View File

@ -8,7 +8,7 @@ import (
type int64LazyAny struct {
baseAny
cfg *frozenConfig
cfg *frozenConfig
buf []byte
err error
cache int64

View File

@ -8,7 +8,7 @@ import (
type objectLazyAny struct {
baseAny
cfg *frozenConfig
cfg *frozenConfig
buf []byte
err error
cache map[string]Any

View File

@ -1,11 +1,11 @@
package jsoniter
import (
"errors"
"io"
"reflect"
"sync/atomic"
"unsafe"
"errors"
)
type Config struct {

View File

@ -23,7 +23,7 @@ func (cfg *frozenConfig) ReturnStream(stream *Stream) {
func (cfg *frozenConfig) BorrowIterator(data []byte) *Iterator {
select {
case iter := <- cfg.iteratorPool:
case iter := <-cfg.iteratorPool:
iter.ResetBytes(data)
return iter
default:

View File

@ -4,9 +4,9 @@ import (
"encoding"
"encoding/json"
"reflect"
"sort"
"strconv"
"unsafe"
"sort"
)
type mapDecoder struct {
@ -151,7 +151,6 @@ func (encoder *sortKeysMapEncoder) encode(ptr unsafe.Pointer, stream *Stream) {
realInterface := (*interface{})(unsafe.Pointer(&mapInterface))
realVal := reflect.ValueOf(*realInterface)
// Extract and sort the keys.
var sv stringValues = realVal.MapKeys()
sort.Sort(sv)

View File

@ -2,9 +2,9 @@ package jsoniter
import (
"bytes"
"encoding/json"
"github.com/json-iterator/go/require"
"testing"
"encoding/json"
)
func Test_true(t *testing.T) {

View File

@ -128,11 +128,11 @@ func Test_map_key_with_escaped_char(t *testing.T) {
func Test_encode_map_with_sorted_keys(t *testing.T) {
should := require.New(t)
m := map[string]interface{}{
"3": 3,
"1": 1,
"2": 2,
}
m := map[string]interface{}{
"3": 3,
"1": 1,
"2": 2,
}
bytes, err := json.Marshal(m)
should.Nil(err)
output, err := ConfigCompatibleWithStandardLibrary.MarshalToString(m)

View File

@ -147,7 +147,7 @@ func Test_string_encode_with_std_without_html_escape(t *testing.T) {
err := encoder.Encode(input)
should.Nil(err)
stdOutput := buf.String()
stdOutput = stdOutput[:len(stdOutput) - 1]
stdOutput = stdOutput[:len(stdOutput)-1]
jsoniterOutputBytes, err := Marshal(input)
should.Nil(err)
jsoniterOutput := string(jsoniterOutputBytes)