Upgrade gjson to bring in new performance improvements (#6106)

This commit is contained in:
Harshavardhana
2018-07-02 13:31:11 -07:00
committed by kannappanr
parent 360f3f9335
commit d7ced9a8b5
5 changed files with 784 additions and 528 deletions

10
vendor/github.com/tidwall/gjson/gjson_gae.go generated vendored Normal file
View File

@@ -0,0 +1,10 @@
//+build appengine
package gjson
func getBytes(json []byte, path string) Result {
return Get(string(json), path)
}
func fillIndex(json string, c *parseContext) {
// noop. Use zero for the Index value.
}