Lines Matching refs:arguments
531 if (this.arguments) {
532 json += ',"arguments":';
533 // Encode the arguments part.
534 if (this.arguments.toJSONProtocol) {
535 json += this.arguments.toJSONProtocol();
537 json += SimpleObjectToJSON_(this.arguments);
561 request.arguments = {};
562 request.arguments.handles = [ lookup_handle ];
567 request.arguments = {};
568 request.arguments.expression = expression;
571 request.arguments.global = true;
584 request.arguments = {};
585 request.arguments.type = type;
586 request.arguments.handle = parseInt(handle_match[1]);
604 // arguments.
606 request.arguments = {};
608 // Process arguments if any.
616 throw new Error('Invalid step arguments.');
631 request.arguments.stepcount = stepcount;
638 request.arguments.stepaction = 'in';
643 request.arguments.stepaction = 'min';
648 request.arguments.stepaction = 'next';
653 request.arguments.stepaction = 'out';
662 request.arguments.stepaction = type;
663 request.arguments.stepcount = stepcount;
668 request.arguments.stepaction = type;
681 request.arguments = {};
682 request.arguments.fromFrame = 0;
683 request.arguments.toFrame = 10;
690 request.arguments.fromFrame = 0;
691 request.arguments.toFrame = frameCount;
694 request.arguments.fromFrame = 0;
695 request.arguments.toFrame = -frameCount;
696 request.arguments.bottom = true;
708 throw new Error('Invalid arguments start frame cannot be larger ' +
712 request.arguments.fromFrame = fromFrame;
713 request.arguments.toFrame = toFrame + 1;
715 throw new Error('Invalid backtrace arguments.');
728 request.arguments = {};
729 request.arguments.number = args[0];
749 request.arguments = {};
750 request.arguments.number = args[0];
816 // Parse the arguments.
825 throw new Error('Invalid list arguments.');
843 // Parse the arguments.
856 request.arguments = {};
857 request.arguments.fromLine = from;
858 request.arguments.toLine = from + lines;
869 // Process arguments if any.
874 throw new Error('Invalid scripts arguments.');
877 request.arguments = {};
880 request.arguments.types = ScriptTypeFlag(Debug.ScriptType.Native);
884 request.arguments.types = ScriptTypeFlag(Debug.ScriptType.Extension);
888 request.arguments.types =
897 request.arguments.filter = args[0];
909 // Process arguments if any.
957 request.arguments = {};
958 request.arguments.type = type;
959 request.arguments.target = target;
960 request.arguments.line = line;
961 request.arguments.column = column;
962 request.arguments.condition = condition;
973 throw new Error('Unexpected arguments.');
985 // Process arguments if any.
987 request.arguments = {};
988 request.arguments.breakpoint = parseInt(args);
990 throw new Error('Invalid break arguments.');
1048 request.arguments = {};
1049 request.arguments.type = excType;
1050 request.arguments.enabled = (command == 'enable');
1059 // Process arguments if any.
1061 request.arguments = {};
1070 request.arguments.breakpoint = parseInt(breakpointArg);
1074 request.arguments.condition = otherArgs ? otherArgs : null;
1077 request.arguments.enabled = true;
1080 request.arguments.enabled = false;
1083 request.arguments.ignoreCount = parseInt(otherArgs);
1086 throw new Error('Invalid arguments.');
1089 throw new Error('Invalid arguments.');
1120 throw new Error('Invalid info arguments.');
1130 request.arguments = {};
1131 request.arguments.flags = args;
1157 request.arguments = {};
1158 request.arguments.type = cmd;
1163 throw new Error('Missing arguments after ' + cmd + '.');
1179 // Process arguments.
1189 throw new Error('Invalid trace arguments.');
1192 throw new Error('Invalid trace arguments.');
1200 print('warning: arguments to \'help\' are ignored');
1204 print('Note: [] denotes optional parts of commands, or optional options / arguments.');
1232 print('inf[o] ar[gs] - prints info about arguments of the current function');
1480 var args = body.arguments;
1482 result = 'No arguments';