| 7017 | //////////////////////////////////////////////////////////////////////////////// |
| 7018 | |
| 7019 | inline int64_t MemoryManagement::AdjustExternalMemory(BasicEnv env, |
| 7020 | int64_t change_in_bytes) { |
| 7021 | int64_t result; |
| 7022 | napi_status status = |
| 7023 | napi_adjust_external_memory(env, change_in_bytes, &result); |
| 7024 | NAPI_FATAL_IF_FAILED(status, |
| 7025 | "MemoryManagement::AdjustExternalMemory", |
| 7026 | "napi_adjust_external_memory"); |
| 7027 | return result; |
| 7028 | } |
| 7029 | |
| 7030 | //////////////////////////////////////////////////////////////////////////////// |
| 7031 | // Version Management class |
nothing calls this directly
no outgoing calls
no test coverage detected