* Converts this Maybe<> to a value of type T. If this Maybe<> is * nothing (empty), V8 will crash the process. */
| 58 | * nothing (empty), V8 will crash the process. |
| 59 | */ |
| 60 | V8_INLINE T FromJust() const { |
| 61 | if (V8_UNLIKELY(!IsJust())) api_internal::FromJustIsNothing(); |
| 62 | return value_; |
| 63 | } |
| 64 | |
| 65 | /** |
| 66 | * Converts this Maybe<> to a value of type T, using a default value if this |
no outgoing calls
no test coverage detected