| 92 | } |
| 93 | |
| 94 | type object struct { |
| 95 | fields map[*symbol.Variable]interface{} |
| 96 | } |
| 97 | |
| 98 | func NewEmptyObject() Object { |
| 99 | return &object{fields: make(map[*symbol.Variable]interface{})} |
nothing calls this directly
no outgoing calls
no test coverage detected