Home | History | Annotate | Download | only in sdk

Lines Matching defs:ScriptFile

60         var scriptFile = uiSourceCode.scriptFileForTarget(this._target);
61 if (scriptFile && ((scriptFile.hasDivergedFromVM() && !scriptFile.isMergingToVM()) || scriptFile.isDivergingFromVM()))
171 var scriptFile = new WebInspector.ResourceScriptFile(this, uiSourceCode, scripts);
172 uiSourceCode.setScriptFileForTarget(this._target, scriptFile);
184 var scriptFile = /** @type {!WebInspector.ResourceScriptFile} */ (uiSourceCode.scriptFileForTarget(this._target));
185 if (scriptFile) {
186 scriptFile.dispose();
210 WebInspector.ScriptFile = function()
214 WebInspector.ScriptFile.Events = {
219 WebInspector.ScriptFile.prototype = {
245 * @implements {WebInspector.ScriptFile}
255 WebInspector.ScriptFile.call(this);
338 this.dispatchEventToListeners(WebInspector.ScriptFile.Events.DidDivergeFromVM, this._uiSourceCode);
347 this.dispatchEventToListeners(WebInspector.ScriptFile.Events.DidMergeToVM, this._uiSourceCode);