* An alias for |FromJust|. Will crash if the Maybe<> is nothing. */
| 35 | * An alias for |FromJust|. Will crash if the Maybe<> is nothing. |
| 36 | */ |
| 37 | V8_INLINE T ToChecked() const { return FromJust(); } |
| 38 | |
| 39 | /** |
| 40 | * Short-hand for ToChecked(), which doesn't return a value. To be used, where |
no outgoing calls