-
The latest commit causes the following errors
```
`$ go build .
# github.com/antihax/goesi/meta
vendor\github.com\antihax\goesi\meta\model_get_status_item_easyjson.go:98:12: in.UnsafeFieldName u…
-
# github.com/chromedp/cdproto/cdp
../../github.com/chromedp/cdproto/cdp/easyjson.go:31:12: in.UnsafeFieldName undefined (type *jlexer.Lexer has no field or method UnsafeFieldName)
../../github.com/c…
a0709 updated
3 years ago
-
easyjson adds their own `intern` option, see https://github.com/mailru/easyjson#string-interning – staticcheck currently flags this: `bar.go:5:15: unknown JSON option "intern" (SA5008)`
Marking as …
-
The following program `sample.go` triggers a panic:
go version 1.15.3 on windows
```go
package main
import (
"github.com/traefik/yaegi/interp"
"github.com/traefik/yaegi/stdlib"
"github.c…
-
According to https://golang.org/pkg/encoding/json/#Unmarshal
Unmarshal matches incoming object keys to the keys used by Marshal (either the struct field name or its tag), preferring an exact match …
-
Integrate [easyjson](https://github.com/zerodha/easyjson) to improve JSON parsing performance by generating marshaling/unmarshaling code at compile time instead of using reflection.
-
Hi.
My golang version is go1.18.3 linux/amd64
I ran the command:
rav@PC:~/Go/MFTI/perfomance/json$ easyjson struct.go
And got an error:
\# command-line-arguments
main.main: relocation target t…
-
it should. ;)
#277 was closed without actually resolving the issue. its unclear what the issue is, is it a bug in golang tooling? or in easyjson? the linked issue implies golang tooling since it wa…
-
var easyJson = require('easy-json-schema')
easyJson({a: false})
> { type: 'object', required: [], properties: { a: { type: 'string' } } }
It should be `{ type: 'object', required: [], …
-
Easyjson does not work with structs generated by the Protocol Buffers go generator (protoc-gen-go).
The problem is that easyjson generates the `MarshalEasyJSON` method with a by-value receiver (int…