This file is indexed.

/usr/share/gocode/src/github.com/hashicorp/hil/evaltype_string.go is in golang-github-hashicorp-hil-dev 0.0~git20160711.1e86c6b-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
// Code generated by "stringer -type=EvalType"; DO NOT EDIT

package hil

import "fmt"

const (
	_EvalType_name_0 = "TypeInvalid"
	_EvalType_name_1 = "TypeString"
	_EvalType_name_2 = "TypeList"
	_EvalType_name_3 = "TypeMap"
)

var (
	_EvalType_index_0 = [...]uint8{0, 11}
	_EvalType_index_1 = [...]uint8{0, 10}
	_EvalType_index_2 = [...]uint8{0, 8}
	_EvalType_index_3 = [...]uint8{0, 7}
)

func (i EvalType) String() string {
	switch {
	case i == 0:
		return _EvalType_name_0
	case i == 2:
		return _EvalType_name_1
	case i == 4:
		return _EvalType_name_2
	case i == 8:
		return _EvalType_name_3
	default:
		return fmt.Sprintf("EvalType(%d)", i)
	}
}