| 321 | } |
| 322 | |
| 323 | MaybeLocal<Int32> Value::ToInt32(Local<Context> context) const { |
| 324 | return MaybeLocal<Int32>(Local<Int32>(static_cast<Int32*>(const_cast<Value*>(this)))); |
| 325 | } |
| 326 | |
| 327 | MaybeLocal<Integer> Value::ToInteger(Local<Context> context) const { |
| 328 | return MaybeLocal<Integer>(Local<Integer>(static_cast<Integer*>(const_cast<Value*>(this)))); |
no outgoing calls
no test coverage detected