Name returns the fully-qualified name of the container. The name may conceptually be a namespace, package, or type.
()
| 85 | // |
| 86 | // The name may conceptually be a namespace, package, or type. |
| 87 | func (c *Container) Name() string { |
| 88 | if c == nil { |
| 89 | return "" |
| 90 | } |
| 91 | return c.name |
| 92 | } |
| 93 | |
| 94 | // ResolveCandidateNames returns the candidates name of namespaced identifiers in C++ resolution |
| 95 | // order. |
no outgoing calls
no test coverage detected