This file is indexed.

/usr/share/gocode/src/github.com/jacobsa/oglemock/generate/test_cases/golden.renamed_pkg.go is in golang-github-jacobsa-oglemock-dev 0.0~git20150428-5.

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
// This file was auto-generated using createmock. See the following page for
// more information:
//
//     https://github.com/jacobsa/oglemock
//

package some_pkg

import (
	fmt "fmt"
	oglemock "github.com/jacobsa/oglemock"
	tony "github.com/jacobsa/oglemock/generate/test_cases/renamed_pkg"
	runtime "runtime"
	unsafe "unsafe"
)

type MockSomeInterface interface {
	tony.SomeInterface
	oglemock.MockObject
}

type mockSomeInterface struct {
	controller  oglemock.Controller
	description string
}

func NewMockSomeInterface(
	c oglemock.Controller,
	desc string) MockSomeInterface {
	return &mockSomeInterface{
		controller:  c,
		description: desc,
	}
}

func (m *mockSomeInterface) Oglemock_Id() uintptr {
	return uintptr(unsafe.Pointer(m))
}

func (m *mockSomeInterface) Oglemock_Description() string {
	return m.description
}

func (m *mockSomeInterface) DoFoo(p0 int) (o0 int) {
	// Get a file name and line number for the caller.
	_, file, line, _ := runtime.Caller(1)

	// Hand the call off to the controller, which does most of the work.
	retVals := m.controller.HandleMethodCall(
		m,
		"DoFoo",
		file,
		line,
		[]interface{}{p0})

	if len(retVals) != 1 {
		panic(fmt.Sprintf("mockSomeInterface.DoFoo: invalid return values: %v", retVals))
	}

	// o0 int
	if retVals[0] != nil {
		o0 = retVals[0].(int)
	}

	return
}