Update vendor

This commit is contained in:
Jingfang Liu
2018-06-14 10:07:41 -07:00
parent b7be630924
commit e7ecceb0c2
290 changed files with 59251 additions and 9 deletions

26
vendor/github.com/mailru/easyjson/tests/errors.go generated vendored Normal file
View File

@@ -0,0 +1,26 @@
package tests
//easyjson:json
type ErrorIntSlice []int
//easyjson:json
type ErrorBoolSlice []bool
//easyjson:json
type ErrorUintSlice []uint
//easyjson:json
type ErrorStruct struct {
Int int `json:"int"`
String string `json:"string"`
Slice []int `json:"slice"`
IntSlice []int `json:"int_slice"`
}
type ErrorNestedStruct struct {
ErrorStruct ErrorStruct `json:"error_struct"`
Int int `json:"int"`
}
//easyjson:json
type ErrorIntMap map[uint32]string