Lines Matching refs:scripts
58 // The different types of scripts matching enum ScriptType in objects.h.
429 var scripts = Debug.scripts();
432 for (var i in scripts) {
433 var script = scripts[i];
636 // Run through all scripts to see if this script break point matches any
637 // loaded scripts.
638 var scripts = this.scripts();
639 for (var i = 0; i < scripts.length; i++) {
640 if (script_break_point.matchesScript(scripts[i])) {
641 script_break_point.set(scripts[i]);
741 // Get all the scripts currently loaded. Locating all the scripts is based on
743 Debug.scripts = function() {
744 // Collect all scripts in the heap.
1245 } else if (request.command == 'scripts') {
1884 // Collect all scripts in the heap.
1885 var scripts = %DebugGetLoadedScripts();
1889 for (var i = 0; i < scripts.length; i++) {
1890 if (idsToInclude && !idsToInclude[scripts[i].id]) {
1893 if (types & ScriptTypeFlag(scripts[i].type)) {
1894 response.body.push(MakeMirror(scripts[i]));