| 85 | // ### Object implementation ### |
| 86 | |
| 87 | Object::Object(Object::Type type, const Symbol* symbol) |
| 88 | : type(type) |
| 89 | , symbol(symbol) |
| 90 | , output(*this) |
| 91 | { |
| 92 | // nothing |
| 93 | } |
| 94 | |
| 95 | Object::Object(Object::Type type, const Symbol* symbol, MapCoordVector coords, Map* map) |
| 96 | : type(type) |
nothing calls this directly
no outgoing calls
no test coverage detected