Lines Matching refs:json
80 JSON: 2 };
101 var trace_debug_json = false; // Tracing all debug json packets?
114 // Process a debugger JSON message into a display text and a running status.
121 // Convert the JSON string to an object.
261 // Converts a text command to a JSON request.
272 // If the very first character is a { assume that a JSON request have been
273 // entered as a command. Converting that to a JSON request is trivial.
467 // Return undefined to indicate command handled internally (no JSON).
475 // Return undefined to indicate command handled internally (no JSON).
498 var json = '{';
499 json += '"seq":' + this.seq;
500 json += ',"type":"' + this.type + '"';
502 json += ',"command":' + JSON.stringify(this.command);
505 json += ',"arguments":';
508 json += this.arguments.toJSONProtocol();
510 json += JSON.stringify(this.arguments);
513 json += '}';
514 return json;
523 // Create a JSON request for the evaluation command.
551 // Create a JSON request for the references/instances command.
567 // Create a JSON request for the continue command.
574 // Create a JSON request for the step command.
648 // Create a JSON request for the backtrace command.
695 // Create a JSON request for the frame command.
708 // Create a JSON request for the scopes command.
716 // Create a JSON request for the scope command.
729 // Create a JSON request for the print command.
739 // Create a JSON request for the dir command.
749 // Create a JSON request for the references command.
760 // Create a JSON request for the instances command.
772 // Create a JSON request for the list command.
807 // Create a JSON request for the source command.
837 // Create a JSON request for the scripts command.
879 // Create a JSON request for the break command.
953 // Create a JSON request for the clear command.
970 // Create a JSON request for the change breakpoint command.
1069 // Create a JSON request for the disconnect command.
1077 // Create a JSON request for the info command.
1142 // Create a JSON request for the threads command.
1157 } else if (args === 'debug json' || args === 'json' || args === 'packets') {
1159 print('Tracing of debug json packets ' +
1228 // hidden command: trace debug json - toggles tracing of debug json packets
1334 // Convert a JSON response to text for display in a text based debugger.
1601 Debug.ScriptCompilationType.JSON) {
1602 result += 'JSON ';
1678 * @param {string} json - raw protocol packet as JSON string.
1681 function ProtocolPackage(json) {
1682 this.raw_json_ = json;
1683 this.packet_ = JSON.parse(json);
1964 // A more universal stringify that supports more types than JSON.