This file is indexed.

/usr/share/gocode/src/github.com/hydrogen18/stalecucumber/jump_list.go is in golang-github-hydrogen18-stalecucumber-dev 0.0~git20161112.0.1e918be-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
package stalecucumber

import "errors"

type opcodeFunc func(*PickleMachine) error

var ErrOpcodeInvalid = errors.New("Opcode is invalid")

func (pm *PickleMachine) Opcode_Invalid() error {
	return ErrOpcodeInvalid
}

type opcodeJumpList [256]opcodeFunc

func buildEmptyJumpList() opcodeJumpList {
	jl := opcodeJumpList{}

	for i := range jl {
		jl[i] = (*PickleMachine).Opcode_Invalid
	}
	return jl
}