This file is indexed.

/usr/share/gocode/src/github.com/masterzen/simplexml/dom/namespace.go is in golang-github-masterzen-simplexml-dev 0.0~git20140219.95ba304-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
package dom

type Namespace struct {
	Prefix string
	Uri    string
}

func (ns *Namespace) SetTo(node *Element) {
	node.SetNamespace(ns.Prefix, ns.Uri)
}