| 299 | |
| 300 | template<typename T> |
| 301 | inline Maybe<T> Just(const T& t) { |
| 302 | return Maybe<T>(t); |
| 303 | } |
| 304 | |
| 305 | #if defined(V8_MAJOR_VERSION) && (V8_MAJOR_VERSION > 4 || \ |
| 306 | (V8_MAJOR_VERSION == 4 && defined(V8_MINOR_VERSION) && V8_MINOR_VERSION >= 3)) |
no outgoing calls
no test coverage detected