| 56 | |
| 57 | template<typename T> |
| 58 | intrusive_ptr<Object> DefaultObjectFactory(const std::vector<Value>& args) |
| 59 | { |
| 60 | DefaultObjectFactoryCheckArgs(args); |
| 61 | |
| 62 | return new T(); |
| 63 | } |
| 64 | |
| 65 | template<typename T> |
| 66 | intrusive_ptr<Object> DefaultObjectFactoryVA(const std::vector<Value>& args) |
nothing calls this directly
no outgoing calls
no test coverage detected