Home | History | Annotate | Download | only in src

Lines Matching refs:body

1003             body: { invocationText: this.exec_state_.frame(0).invocationText(),
1010 o.body.sourceLine = this.sourceLine(),
1011 o.body.sourceColumn = this.sourceColumn(),
1012 o.body.sourceLineText = this.sourceLineText(),
1013 o.body.script = MakeScriptObject_(script, false);
1018 o.body.breakpoints = [];
1030 o.body.breakpoints.push(number);
1092 o.body = { uncaught: this.uncaught_,
1098 o.body.sourceLine = this.sourceLine();
1099 o.body.sourceColumn = this.sourceColumn();
1100 o.body.sourceLineText = this.sourceLineText();
1105 o.body.script = MakeScriptObject_(script, false);
1108 o.body.sourceLine = -1;
1154 o.body = {};
1155 o.body.script = this.script_;
1211 o.body = {};
1212 o.body.script = { id: this.id() };
1298 if (this.body) {
1299 // Encode the body part.
1302 if (this.body instanceof Mirror) {
1303 bodyJson = serializer.serializeValue(this.body);
1304 } else if (this.body instanceof Array) {
1306 for (var i = 0; i < this.body.length; i++) {
1307 if (this.body[i] instanceof Mirror) {
1308 bodyJson.push(serializer.serializeValue(this.body[i]));
1310 bodyJson.push(ObjectToProtocolObject_(this.body[i], serializer));
1314 bodyJson = ObjectToProtocolObject_(this.body, serializer);
1316 json.body = bodyJson;
1616 response.body = { type: type,
1622 response.body.type = 'scriptId';
1623 response.body.script_id = break_point.script_id();
1625 response.body.type = 'scriptName';
1626 body.script_name = break_point.script_name();
1628 response.body.line = break_point.line();
1629 response.body.column = break_point.column();
1630 response.body.actual_locations = break_point.actual_locations();
1632 response.body.type = 'function';
1633 response.body.actual_locations = [break_point.actual_location];
1708 response.body = { breakpoints: cleared_break_points };
1732 response.body = { breakpoint: break_point }
1763 response.body = {
1819 response.body = { 'type': type, 'enabled': enabled };
1829 response.body = {
1865 // Create the response body.
1870 response.body = {
1894 response.body = this.exec_state_.frame();
1928 response.body = {
1955 response.body = frame.scope(scope_index);
2005 response.body = this.exec_state_.evaluateGlobal(
2027 response.body = this.exec_state_.frame(frame_number).evaluate(
2032 response.body = this.exec_state_.frame().evaluate(
2053 response.body = MakeMirror(%GetLOLObj(obj_id));
2086 response.body = mirrors;
2115 response.body = mirror.referencedBy();
2117 response.body = mirror.constructedBy();
2159 response.body = {};
2160 response.body.source = slice.sourceText();
2161 response.body.fromLine = slice.from_line;
2162 response.body.toLine = slice.to_line;
2163 response.body.fromPosition = slice.from_position;
2164 response.body.toPosition = slice.to_position;
2165 response.body.totalLines = script.lineCount();
2209 response.body = [];
2231 response.body.push(MakeMirror(scripts[i]));
2251 // Create the response body.
2252 response.body = {
2265 response.body = {
2290 response.body = {};
2327 response.body = {change_log: change_log, result: result_description};
2330 response.body.stepin_recommended = true;
2346 response.body = { flags: [] };
2357 response.body.flags.push({ name: name, value: debugger_flag.getValue() });
2362 response.body.flags.push({ name: name, value: value });
2383 response.body = { "before": before, "after": after };
2389 response.body = %CaptureLOL();
2398 response.body = { id: id };
2413 response.body = %DumpLOL(id1, id2, start, count, filter);
2415 response.body = %SummarizeLOL(id1, id2, filter);
2422 response.body = {};
2423 response.body.id = %GetLOLObjId(address);
2430 response.body = %InfoLOL(start, count);
2447 response.body = %GetLOLObjRetainers(id, Mirror.prototype, verbose,
2455 response.body = {};
2456 response.body.path = %GetLOLPath(id1, id2, Mirror.prototype);
2462 response.body = {};
2463 response.body.dump = %PrintLOLObj(id);