This file is indexed.

/usr/share/gocode/src/github.com/golang/mock/gomock/mock_matcher/mock_matcher.go is in golang-github-golang-mock-dev 0.0~git20150821.0.06883d9-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
// Automatically generated by MockGen. DO NOT EDIT!
// Source: github.com/golang/mock/gomock (interfaces: Matcher)

package mock_gomock

import (
	gomock "github.com/golang/mock/gomock"
)

// Mock of Matcher interface
type MockMatcher struct {
	ctrl     *gomock.Controller
	recorder *_MockMatcherRecorder
}

// Recorder for MockMatcher (not exported)
type _MockMatcherRecorder struct {
	mock *MockMatcher
}

func NewMockMatcher(ctrl *gomock.Controller) *MockMatcher {
	mock := &MockMatcher{ctrl: ctrl}
	mock.recorder = &_MockMatcherRecorder{mock}
	return mock
}

func (_m *MockMatcher) EXPECT() *_MockMatcherRecorder {
	return _m.recorder
}

func (_m *MockMatcher) Matches(_param0 interface{}) bool {
	ret := _m.ctrl.Call(_m, "Matches", _param0)
	ret0, _ := ret[0].(bool)
	return ret0
}

func (_mr *_MockMatcherRecorder) Matches(arg0 interface{}) *gomock.Call {
	return _mr.mock.ctrl.RecordCall(_mr.mock, "Matches", arg0)
}

func (_m *MockMatcher) String() string {
	ret := _m.ctrl.Call(_m, "String")
	ret0, _ := ret[0].(string)
	return ret0
}

func (_mr *_MockMatcherRecorder) String() *gomock.Call {
	return _mr.mock.ctrl.RecordCall(_mr.mock, "String")
}