Home | History | Annotate | Download | only in json

Lines Matching refs:json

6 // The JSON data is a summary of agl's changes in the
8 // We benchmark converting between the JSON form
11 package json
23 Tree *codeNode `json:"tree"`
24 Username string `json:"username"`
28 Name string `json:"name"`
29 Kids []*codeNode `json:"kids"`
30 CLWeight float64 `json:"cl_weight"`
31 Touches int `json:"touches"`
32 MinT int64 `json:"min_t"`
33 MaxT int64 `json:"max_t"`
34 MeanT int64 `json:"mean_t"`
41 f, err := os.Open("testdata/code.json.gz")
58 panic("unmarshal code.json: " + err.Error())
62 panic("marshal code.json: " + err.Error())
75 panic("re-marshal code.json: different result")