| 48 | } |
| 49 | |
| 50 | NumericCasts* NumericCasts::GetThis(const v8::FunctionCallbackInfo<Value>& args) { |
| 51 | auto ext = args.Data().As<External>(); |
| 52 | |
| 53 | auto thisPtr = reinterpret_cast<NumericCasts*>(ext->Value()); |
| 54 | |
| 55 | return thisPtr; |
| 56 | } |
| 57 | |
| 58 | void NumericCasts::MarkAsLongCallbackStatic(const v8::FunctionCallbackInfo<Value>& args) { |
| 59 | try { |