Home | History | Annotate | Download | only in src

Lines Matching refs:arguments

508   if (this.arguments) {
509 json += ',"arguments":';
510 // Encode the arguments part.
511 if (this.arguments.toJSONProtocol) {
512 json += this.arguments.toJSONProtocol();
514 json += JSON.stringify(this.arguments);
538 request.arguments = {};
539 request.arguments.handles = [ lookup_handle ];
544 request.arguments = {};
545 request.arguments.expression = expression;
548 request.arguments.global = true;
561 request.arguments = {};
562 request.arguments.type = type;
563 request.arguments.handle = parseInt(handle_match[1]);
581 // arguments.
583 request.arguments = {};
585 // Process arguments if any.
593 throw new Error('Invalid step arguments.');
608 request.arguments.stepcount = stepcount;
615 request.arguments.stepaction = 'in';
620 arguments.stepaction = 'min';
625 request.arguments.stepaction = 'next';
630 request.arguments.stepaction = 'out';
639 request.arguments.stepaction = type;
640 request.arguments.stepcount = stepcount;
645 request.arguments.stepaction = type;
658 request.arguments = {};
659 request.arguments.fromFrame = 0;
660 request.arguments.toFrame = 10;
667 request.arguments.fromFrame = 0;
668 request.arguments.toFrame = frameCount;
671 request.arguments.fromFrame = 0;
672 request.arguments.toFrame = -frameCount;
673 request.arguments.bottom = true;
685 throw new Error('Invalid arguments start frame cannot be larger ' +
689 request.arguments.fromFrame = fromFrame;
690 request.arguments.toFrame = toFrame + 1;
692 throw new Error('Invalid backtrace arguments.');
705 request.arguments = {};
706 request.arguments.number = args[0];
726 request.arguments = {};
727 request.arguments.number = args[0];
793 // Parse the arguments.
802 throw new Error('Invalid list arguments.');
820 // Parse the arguments.
833 request.arguments = {};
834 request.arguments.fromLine = from;
835 request.arguments.toLine = from + lines;
846 // Process arguments if any.
851 throw new Error('Invalid scripts arguments.');
854 request.arguments = {};
857 request.arguments.types = ScriptTypeFlag(Debug.ScriptType.Native);
861 request.arguments.types = ScriptTypeFlag(Debug.ScriptType.Extension);
865 request.arguments.types =
874 request.arguments.filter = args[0];
886 // Process arguments if any.
934 request.arguments = {};
935 request.arguments.type = type;
936 request.arguments.target = target;
937 request.arguments.line = line;
938 request.arguments.column = column;
939 request.arguments.condition = condition;
950 throw new Error('Unexpected arguments.');
962 // Process arguments if any.
964 request.arguments = {};
965 request.arguments.breakpoint = parseInt(args);
967 throw new Error('Invalid break arguments.');
1025 request.arguments = {};
1026 request.arguments.type = excType;
1027 request.arguments.enabled = (command == 'enable');
1036 // Process arguments if any.
1038 request.arguments = {};
1047 request.arguments.breakpoint = parseInt(breakpointArg);
1051 request.arguments.condition = otherArgs ? otherArgs : null;
1054 request.arguments.enabled = true;
1057 request.arguments.enabled = false;
1060 request.arguments.ignoreCount = parseInt(otherArgs);
1063 throw new Error('Invalid arguments.');
1066 throw new Error('Invalid arguments.');
1097 throw new Error('Invalid info arguments.');
1107 request.arguments = {};
1108 request.arguments.flags = args;
1134 request.arguments = {};
1135 request.arguments.type = cmd;
1140 throw new Error('Missing arguments after ' + cmd + '.');
1156 // Process arguments.
1166 throw new Error('Invalid trace arguments.');
1169 throw new Error('Invalid trace arguments.');
1177 print('warning: arguments to \'help\' are ignored');
1181 print('Note: [] denotes optional parts of commands, or optional options / arguments.');
1209 print('inf[o] ar[gs] - prints info about arguments of the current function');
1457 var args = body.arguments;
1459 result = 'No arguments';