Home
last modified time | relevance | path

Searched refs:func_or_script_name (Results 1 – 1 of 1) sorted by relevance

/external/v8/src/debug/
Ddebug.js476 Debug.findScript = function(func_or_script_name) { argument
477 if (IS_FUNCTION(func_or_script_name)) {
478 return %FunctionGetScript(func_or_script_name);
479 } else if (IS_REGEXP(func_or_script_name)) {
485 if (func_or_script_name.test(script.name)) {
501 return %GetScript(func_or_script_name);
509 Debug.scriptSource = function(func_or_script_name) { argument
510 return this.findScript(func_or_script_name).source;