Home | History | Annotate | Download | only in js

Lines Matching refs:scripts

46      * Id of the inspected page global context. It is used for filtering scripts.
85 * Whether the scripts panel has been shown and initialilzed.
91 * Whether the scripts list should be requested next time when context id is
98 * Whether the agent is waiting for initial scripts response.
104 * If backtrace response is received when initial scripts response
106 * after the scripts response processing. The handler bound to its arguments
114 * survive page reload. Breakpoints set by script id(for scripts that don't
148 // No need to request scripts since they all will be pushed in AfterCompile
161 * Initializes scripts UI. This method is called every time Scripts panel
166 // Initialize scripts cache when Scripts panel is shown first time.
172 // very beginning of the page load cycle and hence will get all scripts
173 // via after-compile events. No need to request scripts for this session.
175 // There can be a number of scripts from after-compile events that are
205 var cmd = new devtools.DebugCommand("scripts", {
737 * Sets debugger context id for scripts filtering.
744 // If it's the first time context id is set request scripts list.
747 var cmd = new devtools.DebugCommand("scripts", {
758 // scripts will be pushed in after compile events and there is no need to
763 // We received initial scripts response so flush the flag and
799 if (msg.getCommand() === "scripts")
823 WebInspector.currentPanel = WebInspector.panels.scripts;
838 WebInspector.currentPanel = WebInspector.panels.scripts;
857 var scripts = msg.getBody();
858 for (var i = 0; i < scripts.length; i++) {
859 var script = scripts[i];
861 // Skip scripts from other tabs.
880 // Always ignore scripts from the utility context.
886 return false; // Always ignore scripts from the utility context.
927 // Ignore scripts delta if main request has not been issued yet.
932 // Ignore scripts from other tabs.
958 // Only report script as parsed after scripts panel has been shown.