Home | History | Annotate | Download | only in debug

Lines Matching defs:scripts

49 // The different types of scripts matching enum ScriptType in objects.h.
428 var scripts = this.scripts();
431 for (var i in scripts) {
432 var script = scripts[i];
668 // Run through all scripts to see if this script break point matches any
669 // loaded scripts.
670 var scripts = this.scripts();
671 for (var i = 0; i < scripts.length; i++) {
672 if (script_break_point.matchesScript(scripts[i])) {
673 script_break_point.set(scripts[i]);
786 // Get all the scripts currently loaded. Locating all the scripts is based on
788 Debug.scripts = function() {
789 // Collect all scripts in the heap.
797 var scripts = Debug.scripts();
798 for (var script of scripts) {