ObjectImpl represents a default Object Implementation. To defined a new value type, one can embed ObjectImpl in their type declarations to avoid implementing all non-significant methods. TypeName() and String() methods still need to be implemented.
| 84 | // implementing all non-significant methods. TypeName() and String() methods |
| 85 | // still need to be implemented. |
| 86 | type ObjectImpl struct { |
| 87 | } |
| 88 | |
| 89 | // TypeName returns the name of the type. |
| 90 | func (o *ObjectImpl) TypeName() string { |
nothing calls this directly
no outgoing calls
no test coverage detected