Home | History | Annotate | Download | only in inspector

Lines Matching refs:injectedScript

82 var InjectedScript = function()
100 InjectedScript.primitiveTypes = {
107 InjectedScript.prototype = {
115 return InjectedScript.primitiveTypes[typeof object] && !this._isHTMLAllCollection(object);
188 switch (injectedScript._describe(object)) {
217 return new InjectedScript.RemoteObject(object, objectGroupName, forceValueType, generatePreview, columnNames);
220 var description = injectedScript._describe(e);
224 return new InjectedScript.RemoteObject(description);
282 inspectedWindow.console.error("Web Inspector error: InjectedScript.%s returns undefined", methodName);
364 scopes.push(InjectedScript.CallFrameProxy._createScopeJson(rawScopes[i].type, rawScopes[i].object, objectGroupName));
592 * @return {Array.<InjectedScript.CallFrameProxy>|boolean}
602 result.push(new InjectedScript.CallFrameProxy(depth++, callFrame));
893 * @type {!InjectedScript}
896 var injectedScript = new InjectedScript();
906 InjectedScript.RemoteObject = function(object, objectGroupName, forceValueType, generatePreview, columnNames)
909 if (injectedScript.isPrimitiveValue(object) || object === null || forceValueType) {
926 this.objectId = injectedScript._bind(object, objectGroupName);
927 var subtype = injectedScript._subtype(object);
931 this.description = injectedScript._describe(object);
933 if (generatePreview && (this.type === "object" || injectedScript._isHTMLAllCollection(object)))
937 InjectedScript.RemoteObject.prototype = {
958 for (var o = object; injectedScript._isDefined(o); o = o.__proto__)
999 if (InjectedScript.primitiveTypes[type]) {
1024 var subtype = injectedScript._subtype(value);
1027 description = this._abbreviateString(/** @type {string} */ (injectedScript._describe(value)), maxLength, subtype === "regexp");
1075 InjectedScript.CallFrameProxy = function(ordinal, callFrame)
1081 this.this = injectedScript._wrapObject(callFrame.thisObject, "backtrace");
1084 InjectedScript.CallFrameProxy.prototype = {
1094 var scope = InjectedScript.CallFrameProxy._createScopeJson(callFrame.scopeType(i), scopeChain[i], "backtrace");
1107 InjectedScript.CallFrameProxy._createScopeJson = function(scopeTypeCode, scopeObject, groupId) {
1123 object: injectedScript._wrapObject(scopeObject, groupId),
1178 this.$_ = injectedScript._lastResult;
1323 return injectedScript._inspect(object);
1328 if (injectedScript._subtype(object) === "node")
1332 var remoteObject = injectedScript._wrapObject(string, "")
1417 injectedScript._commandLineAPIImpl = new CommandLineAPIImpl();
1418 return injectedScript;