From: yangguo Date: Fri, 21 Aug 2015 09:12:57 +0000 (-0700) Subject: Do not use js builtins object to determine whether a function is a builtin. X-Git-Tag: upstream/4.7.83~755 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=371ad73a50f2c55286f59b34ca63920b44ca835f;p=platform%2Fupstream%2Fv8.git Do not use js builtins object to determine whether a function is a builtin. We can use the script type to determine that instead. Script of type TYPE_NATIVE are considered builtins, TYPE_NORMAL are not. The only exception to this rule is the empty function, for which the script is TYPE_NATIVE (observable by the debugger), but should be stringified to "function () {}" instead of "function () { [native code] }". For this, I introduce a hide_source flag on the script object. We also use IsBuiltin and IsSubjectToDebugging interchangeably. For debugger, we now use the latter, hiding the detail that only non-builtins are debuggable. R=mstarzinger@chromium.org Review URL: https://codereview.chromium.org/1292283004 Cr-Commit-Position: refs/heads/master@{#30285} --- diff --git a/src/compiler.cc b/src/compiler.cc index 44df5a67f..76c70acd3 100644 --- a/src/compiler.cc +++ b/src/compiler.cc @@ -1361,6 +1361,7 @@ Handle Compiler::CompileScript( Handle