Name returns the name of the namespace
()
| 33 | |
| 34 | // Name returns the name of the namespace |
| 35 | func (n Namespace) Name() string { |
| 36 | return n.name |
| 37 | } |
| 38 | |
| 39 | // NewNamespace returns a new Namespace for scoping of names |
| 40 | func NewNamespace(name string) Namespace { |
no outgoing calls