Home
last modified time | relevance | path

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

/external/chromium_org/v8/src/
Ddebug-debugger.js516 Debug.findScript = function(func_or_script_name) { argument
517 if (IS_FUNCTION(func_or_script_name)) {
518 return %FunctionGetScript(func_or_script_name);
519 } else if (IS_REGEXP(func_or_script_name)) {
525 if (func_or_script_name.test(script.name)) {
541 return %GetScript(func_or_script_name);
549 Debug.scriptSource = function(func_or_script_name) { argument
550 return this.findScript(func_or_script_name).source;