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

12
vendor/github.com/mailru/easyjson/tests/omitempty.go generated vendored Normal file
View File

@@ -0,0 +1,12 @@
package tests
//easyjson:json
type OmitEmptyDefault struct {
Field string
Str string
Str1 string `json:"s,!omitempty"`
Str2 string `json:",!omitempty"`
}
var omitEmptyDefaultValue = OmitEmptyDefault{Field: "test"}
var omitEmptyDefaultString = `{"Field":"test","s":"","Str2":""}`