| 109 | |
| 110 | template <typename T> |
| 111 | struct IntegerFactory : FactoryBase<T> { |
| 112 | typedef typename FactoryBase<T>::return_t return_t; |
| 113 | static inline return_t New(int32_t value); |
| 114 | static inline return_t New(uint32_t value); |
| 115 | }; |
| 116 | |
| 117 | template <> |
| 118 | struct Factory<v8::Integer> : IntegerFactory<v8::Integer> {}; |
nothing calls this directly
no outgoing calls
no test coverage detected