summaryrefslogtreecommitdiff
path: root/deps/v8/tools/codemap.js
diff options
context:
space:
mode:
Diffstat (limited to 'deps/v8/tools/codemap.js')
-rw-r--r--deps/v8/tools/codemap.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/deps/v8/tools/codemap.js b/deps/v8/tools/codemap.js
index 1fa2c52e5c..4c185b0464 100644
--- a/deps/v8/tools/codemap.js
+++ b/deps/v8/tools/codemap.js
@@ -184,7 +184,7 @@ CodeMap.prototype.findInTree_ = function(tree, addr) {
*
* @private
*/
-CodeMap.prototype.isEmbeddedBuiltin_ = function(entry) {
+CodeMap.prototype.isIsolateIndependentBuiltin_ = function(entry) {
return entry.type == "CPP" && /v8_\w*embedded_blob_/.test(entry.name);
};
@@ -205,7 +205,7 @@ CodeMap.prototype.findAddress = function(addr) {
result = this.findInTree_(this.libraries_, addr);
if (!result) return null;
}
- if (!this.isEmbeddedBuiltin_(result.value)) {
+ if (!this.isIsolateIndependentBuiltin_(result.value)) {
// Embedded builtins are handled in the following dynamic section.
return { entry : result.value, offset : addr - result.key };
}