This file is indexed.

/usr/share/gocode/src/github.com/pierrec/lz4/export_test.go is in golang-github-pierrec-lz4-dev 0.0~git20170519.0.5a3d224-2.

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
// Expose some internals for testing purposes
package lz4

// expose the possible block max sizes
var BlockMaxSizeItems []int

func init() {
	for s := range bsMapValue {
		BlockMaxSizeItems = append(BlockMaxSizeItems, s)
	}
}

var FrameSkipMagic = frameSkipMagic