Home
last modified time | relevance | path

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

/external/v8/src/
Ddebug-debugger.js523 Debug.findScript = function(func_or_script_name) { argument
524 if (IS_FUNCTION(func_or_script_name)) {
525 return %FunctionGetScript(func_or_script_name);
526 } else if (IS_REGEXP(func_or_script_name)) {
532 if (func_or_script_name.test(script.name)) {
548 return %GetScript(func_or_script_name);
556 Debug.scriptSource = function(func_or_script_name) { argument
557 return this.findScript(func_or_script_name).source;