()
| 44 | } |
| 45 | |
| 46 | func newObjectTemplate() *objectTemplate { |
| 47 | return &objectTemplate{ |
| 48 | props: make(map[unistring.String]templatePropFactory), |
| 49 | } |
| 50 | } |
| 51 | |
| 52 | func (t *objectTemplate) putStr(name unistring.String, f templatePropFactory) { |
| 53 | t.props[name] = f |
no outgoing calls
no test coverage detected
searching dependent graphs…