2016-04-29 14:34:51 +00:00
|
|
|
/**
|
2018-09-11 22:27:47 +00:00
|
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
2016-04-29 14:34:51 +00:00
|
|
|
*
|
2018-02-17 02:24:55 +00:00
|
|
|
* This source code is licensed under the MIT license found in the
|
|
|
|
* LICENSE file in the root directory of this source tree.
|
2016-04-29 14:34:51 +00:00
|
|
|
*
|
2018-05-11 02:06:46 +00:00
|
|
|
* @format
|
2018-08-09 15:32:04 +00:00
|
|
|
* @flow strict-local
|
2016-04-29 14:34:51 +00:00
|
|
|
*/
|
2018-05-11 02:06:46 +00:00
|
|
|
|
2016-04-29 14:34:51 +00:00
|
|
|
'use strict';
|
|
|
|
|
2018-05-10 22:44:52 +00:00
|
|
|
const HeapCapture = {
|
2018-05-11 02:06:46 +00:00
|
|
|
captureHeap: function(path: string) {
|
2018-05-10 22:44:52 +00:00
|
|
|
let error = null;
|
2016-04-29 14:34:51 +00:00
|
|
|
try {
|
|
|
|
global.nativeCaptureHeap(path);
|
|
|
|
console.log('HeapCapture.captureHeap succeeded: ' + path);
|
|
|
|
} catch (e) {
|
|
|
|
console.log('HeapCapture.captureHeap error: ' + e.toString());
|
|
|
|
error = e.toString();
|
|
|
|
}
|
2016-08-02 15:05:50 +00:00
|
|
|
require('NativeModules').JSCHeapCapture.captureComplete(path, error);
|
2016-04-29 14:34:51 +00:00
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
module.exports = HeapCapture;
|