Lines Matching full:arguments
542 if (this.arguments) {
543 json += ',"arguments":';
544 // Encode the arguments part.
545 if (this.arguments.toJSONProtocol) {
546 json += this.arguments.toJSONProtocol();
548 json += SimpleObjectToJSON_(this.arguments);
583 request.arguments = {};
584 request.arguments.start = start_index;
585 request.arguments.count = lines_to_dump;
602 request.arguments = {};
603 arguments.obj_id = obj_id;
615 request.arguments = {};
616 request.arguments.handles = [ lookup_handle ];
621 request.arguments = {};
622 request.arguments.expression = expression;
625 request.arguments.global = true;
638 request.arguments = {};
639 request.arguments.type = type;
640 request.arguments.handle = parseInt(handle_match[1]);
658 // arguments.
660 request.arguments = {};
662 // Process arguments if any.
670 throw new Error('Invalid step arguments.');
685 request.arguments.stepcount = stepcount;
692 request.arguments.stepaction = 'in';
697 request.arguments.stepaction = 'min';
702 request.arguments.stepaction = 'next';
707 request.arguments.stepaction = 'out';
716 request.arguments.stepaction = type;
717 request.arguments.stepcount = stepcount;
722 request.arguments.stepaction = type;
735 request.arguments = {};
736 request.arguments.fromFrame = 0;
737 request.arguments.toFrame = 10;
744 request.arguments.fromFrame = 0;
745 request.arguments.toFrame = frameCount;
748 request.arguments.fromFrame = 0;
749 request.arguments.toFrame = -frameCount;
750 request.arguments.bottom = true;
762 throw new Error('Invalid arguments start frame cannot be larger ' +
766 request.arguments.fromFrame = fromFrame;
767 request.arguments.toFrame = toFrame + 1;
769 throw new Error('Invalid backtrace arguments.');
782 request.arguments = {};
783 request.arguments.number = args[0];
803 request.arguments = {};
804 request.arguments.number = args[0];
870 // Parse the arguments.
879 throw new Error('Invalid list arguments.');
897 // Parse the arguments.
910 request.arguments = {};
911 request.arguments.fromLine = from;
912 request.arguments.toLine = from + lines;
923 // Process arguments if any.
928 throw new Error('Invalid scripts arguments.');
931 request.arguments = {};
934 request.arguments.types = ScriptTypeFlag(Debug.ScriptType.Native);
938 request.arguments.types = ScriptTypeFlag(Debug.ScriptType.Extension);
942 request.arguments.types =
951 request.arguments.filter = args[0];
963 // Process arguments if any.
1011 request.arguments = {};
1012 request.arguments.type = type;
1013 request.arguments.target = target;
1014 request.arguments.line = line;
1015 request.arguments.column = column;
1016 request.arguments.condition = condition;
1027 throw new Error('Unexpected arguments.');
1039 // Process arguments if any.
1041 request.arguments = {};
1042 request.arguments.breakpoint = parseInt(args);
1044 throw new Error('Invalid break arguments.');
1102 request.arguments = {};
1103 request.arguments.type = excType;
1104 request.arguments.enabled = (command == 'enable');
1113 // Process arguments if any.
1115 request.arguments = {};
1124 request.arguments.breakpoint = parseInt(breakpointArg);
1128 request.arguments.condition = otherArgs ? otherArgs : null;
1131 arguments.enabled = true;
1134 request.arguments.enabled = false;
1137 request.arguments.ignoreCount = parseInt(otherArgs);
1140 throw new Error('Invalid arguments.');
1143 throw new Error('Invalid arguments.');
1178 throw new Error('Invalid info arguments.');
1188 request.arguments = {};
1189 request.arguments.flags = args;
1215 request.arguments = {};
1216 request.arguments.type = cmd;
1221 throw new Error('Missing arguments after ' + cmd + '.');
1301 request.arguments.verbose = true;
1304 request.arguments = {};
1307 request.arguments.filter = {};
1309 request.arguments.filter.type = type_filter;
1312 request.arguments.filter.space = space_filter;
1315 request.arguments.filter.prop = prop_filter;
1373 throw new Error('Too many arguments after ' + cmd + '.');
1379 request.arguments = {};
1380 request.arguments.id = parseInt(id);
1408 throw new Error('Too few arguments after ' + cmd + '.');
1418 request.arguments.id1 = parseInt(args[1]);
1419 request.arguments.id2 = parseInt(args[2]);
1421 request.arguments.id1 = 0;
1422 request.arguments.id2 = parseInt(args[1]);
1424 request.arguments.id = extractObjId(args[1]);
1432 request.arguments = {};
1433 request.arguments.address = args[1];
1441 throw new Error('Too many arguments after ' + cmd + '.');
1451 request.arguments = {};
1453 request.arguments.id1 = extractObjId(args[1]);
1454 request.arguments.id2 = extractObjId(args[2]);
1456 request.arguments.id1 = 0;
1457 request.arguments.id2 = extractObjId(args[1]);
1465 request.arguments = {};
1466 request.arguments.id = extractObjId(args[1]);
1477 throw new Error('Invalid arguments.');
1493 // Process arguments.
1503 throw new Error('Invalid trace arguments.');
1506 throw new Error('Invalid trace arguments.');
1514 print('warning: arguments to \'help\' are ignored');
1518 print('Note: [] denotes optional parts of commands, or optional options / arguments.');
1546 print('inf[o] ar[gs] - prints info about arguments of the current function');
2069 var args = body.arguments;
2071 result = 'No arguments';