This file is indexed.

/usr/share/gocode/src/github.com/mailru/easyjson/tests/omitempty_easyjson.go is in golang-github-mailru-easyjson-dev 0.0~git20161103.0.159cdb8-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
// AUTOGENERATED FILE: easyjson marshaller/unmarshallers.

package tests

import (
	json "encoding/json"
	jlexer "github.com/mailru/easyjson/jlexer"
	jwriter "github.com/mailru/easyjson/jwriter"
)

// suppress unused package warning
var (
	_ = json.RawMessage{}
	_ = jlexer.Lexer{}
	_ = jwriter.Writer{}
)

func easyjson35b73998DecodeGithubComMailruEasyjsonTests(in *jlexer.Lexer, out *OmitEmptyDefault) {
	isTopLevel := in.IsStart()
	if in.IsNull() {
		if isTopLevel {
			in.Consumed()
		}
		in.Skip()
		return
	}
	in.Delim('{')
	for !in.IsDelim('}') {
		key := in.UnsafeString()
		in.WantColon()
		if in.IsNull() {
			in.Skip()
			in.WantComma()
			continue
		}
		switch key {
		case "Field":
			out.Field = string(in.String())
		case "Str":
			out.Str = string(in.String())
		case "s":
			out.Str1 = string(in.String())
		case "Str2":
			out.Str2 = string(in.String())
		default:
			in.SkipRecursive()
		}
		in.WantComma()
	}
	in.Delim('}')
	if isTopLevel {
		in.Consumed()
	}
}
func easyjson35b73998EncodeGithubComMailruEasyjsonTests(out *jwriter.Writer, in OmitEmptyDefault) {
	out.RawByte('{')
	first := true
	_ = first
	if in.Field != "" {
		if !first {
			out.RawByte(',')
		}
		first = false
		out.RawString("\"Field\":")
		out.String(string(in.Field))
	}
	if in.Str != "" {
		if !first {
			out.RawByte(',')
		}
		first = false
		out.RawString("\"Str\":")
		out.String(string(in.Str))
	}
	if !first {
		out.RawByte(',')
	}
	first = false
	out.RawString("\"s\":")
	out.String(string(in.Str1))
	if !first {
		out.RawByte(',')
	}
	first = false
	out.RawString("\"Str2\":")
	out.String(string(in.Str2))
	out.RawByte('}')
}

// MarshalJSON supports json.Marshaler interface
func (v OmitEmptyDefault) MarshalJSON() ([]byte, error) {
	w := jwriter.Writer{}
	easyjson35b73998EncodeGithubComMailruEasyjsonTests(&w, v)
	return w.Buffer.BuildBytes(), w.Error
}

// MarshalEasyJSON supports easyjson.Marshaler interface
func (v OmitEmptyDefault) MarshalEasyJSON(w *jwriter.Writer) {
	easyjson35b73998EncodeGithubComMailruEasyjsonTests(w, v)
}

// UnmarshalJSON supports json.Unmarshaler interface
func (v *OmitEmptyDefault) UnmarshalJSON(data []byte) error {
	r := jlexer.Lexer{Data: data}
	easyjson35b73998DecodeGithubComMailruEasyjsonTests(&r, v)
	return r.Error()
}

// UnmarshalEasyJSON supports easyjson.Unmarshaler interface
func (v *OmitEmptyDefault) UnmarshalEasyJSON(l *jlexer.Lexer) {
	easyjson35b73998DecodeGithubComMailruEasyjsonTests(l, v)
}