dump string values in JSC heap capture

Reviewed By: dcaspi

Differential Revision: D3723764

fbshipit-source-id: 06ca770808a94bb8b567bab36c1729f1e696484e
This commit is contained in:
Charles Dick 2016-08-17 07:59:45 -07:00 committed by Facebook Github Bot 5
parent fba96ab990
commit 348a8078bc
1 changed files with 5 additions and 0 deletions

View File

@ -26,6 +26,11 @@ function getSourceMapForUrl(url, onFailure, onSuccess) {
return;
}
if (url === 'assets://default_bundle') {
onFailure('Don\'t know how to symbolicate in-app bundle, please load from server');
return;
}
const parsedUrl = urlLib.parse(url);
const options = {
host: 'localhost',