blob: 3eb056f33248314292d6cb947a05a8f460898b51 [file] [log] [blame]
Steve Blocka7e24c12009-10-30 11:49:00 +00001// Copyright 2006-2008 the V8 project authors. All rights reserved.
2// Redistribution and use in source and binary forms, with or without
3// modification, are permitted provided that the following conditions are
4// met:
5//
6// * Redistributions of source code must retain the above copyright
7// notice, this list of conditions and the following disclaimer.
8// * Redistributions in binary form must reproduce the above
9// copyright notice, this list of conditions and the following
10// disclaimer in the documentation and/or other materials provided
11// with the distribution.
12// * Neither the name of Google Inc. nor the names of its
13// contributors may be used to endorse or promote products derived
14// from this software without specific prior written permission.
15//
16// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
28
29// -------------------------------------------------------------------
Andrei Popescu31002712010-02-23 13:46:05 +000030//
31// Matches Script::Type from objects.h
32var TYPE_NATIVE = 0;
33var TYPE_EXTENSION = 1;
34var TYPE_NORMAL = 2;
35
36// Matches Script::CompilationType from objects.h
37var COMPILATION_TYPE_HOST = 0;
38var COMPILATION_TYPE_EVAL = 1;
39var COMPILATION_TYPE_JSON = 2;
Steve Blocka7e24c12009-10-30 11:49:00 +000040
Kristian Monsen25f61362010-05-21 11:50:48 +010041// Matches Messages::kNoLineNumberInfo from v8.h
42var kNoLineNumberInfo = 0;
43
Steve Blocka7e24c12009-10-30 11:49:00 +000044// If this object gets passed to an error constructor the error will
45// get an accessor for .message that constructs a descriptive error
46// message on access.
47var kAddMessageAccessorsMarker = { };
48
Steve Block1e0659c2011-05-24 12:43:12 +010049var kMessages = 0;
Steve Blocka7e24c12009-10-30 11:49:00 +000050
Steve Block1e0659c2011-05-24 12:43:12 +010051var kReplacementMarkers = [ "%0", "%1", "%2", "%3" ];
52
53function FormatString(format, message) {
54 var args = %MessageGetArguments(message);
55 var result = "";
56 var arg_num = 0;
57 for (var i = 0; i < format.length; i++) {
58 var str = format[i];
59 for (arg_num = 0; arg_num < kReplacementMarkers.length; arg_num++) {
60 if (format[i] !== kReplacementMarkers[arg_num]) continue;
61 try {
62 str = ToDetailString(args[arg_num]);
63 } catch (e) {
64 str = "#<error>";
65 }
Steve Blocka7e24c12009-10-30 11:49:00 +000066 }
Steve Block1e0659c2011-05-24 12:43:12 +010067 result += str;
Steve Blocka7e24c12009-10-30 11:49:00 +000068 }
Steve Block1e0659c2011-05-24 12:43:12 +010069 return result;
Steve Blocka7e24c12009-10-30 11:49:00 +000070}
71
72
Steve Block1e0659c2011-05-24 12:43:12 +010073// To check if something is a native error we need to check the
74// concrete native error types. It is not enough to check "obj
75// instanceof $Error" because user code can replace
76// NativeError.prototype.__proto__. User code cannot replace
77// NativeError.prototype though and therefore this is a safe test.
78function IsNativeErrorObject(obj) {
79 return (obj instanceof $Error) ||
80 (obj instanceof $EvalError) ||
81 (obj instanceof $RangeError) ||
82 (obj instanceof $ReferenceError) ||
83 (obj instanceof $SyntaxError) ||
84 (obj instanceof $TypeError) ||
85 (obj instanceof $URIError);
86}
Steve Blocka7e24c12009-10-30 11:49:00 +000087
88
Steve Block1e0659c2011-05-24 12:43:12 +010089// When formatting internally created error messages, do not
90// invoke overwritten error toString methods but explicitly use
91// the error to string method. This is to avoid leaking error
92// objects between script tags in a browser setting.
93function ToStringCheckErrorObject(obj) {
94 if (IsNativeErrorObject(obj)) {
95 return %_CallFunction(obj, errorToString);
96 } else {
97 return ToString(obj);
Steve Blocka7e24c12009-10-30 11:49:00 +000098 }
Steve Blocka7e24c12009-10-30 11:49:00 +000099}
100
101
102function ToDetailString(obj) {
103 if (obj != null && IS_OBJECT(obj) && obj.toString === $Object.prototype.toString) {
104 var constructor = obj.constructor;
Steve Block1e0659c2011-05-24 12:43:12 +0100105 if (!constructor) return ToStringCheckErrorObject(obj);
Steve Blocka7e24c12009-10-30 11:49:00 +0000106 var constructorName = constructor.name;
Steve Block1e0659c2011-05-24 12:43:12 +0100107 if (!constructorName || !IS_STRING(constructorName)) {
108 return ToStringCheckErrorObject(obj);
109 }
110 return "#<" + constructorName + ">";
Steve Blocka7e24c12009-10-30 11:49:00 +0000111 } else {
Steve Block1e0659c2011-05-24 12:43:12 +0100112 return ToStringCheckErrorObject(obj);
Steve Blocka7e24c12009-10-30 11:49:00 +0000113 }
114}
115
116
117function MakeGenericError(constructor, type, args) {
118 if (IS_UNDEFINED(args)) {
119 args = [];
120 }
121 var e = new constructor(kAddMessageAccessorsMarker);
122 e.type = type;
123 e.arguments = args;
124 return e;
125}
126
127
128/**
129 * Setup the Script function and constructor.
130 */
131%FunctionSetInstanceClassName(Script, 'Script');
132%SetProperty(Script.prototype, 'constructor', Script, DONT_ENUM);
133%SetCode(Script, function(x) {
134 // Script objects can only be created by the VM.
135 throw new $Error("Not supported");
136});
137
138
139// Helper functions; called from the runtime system.
140function FormatMessage(message) {
141 if (kMessages === 0) {
142 kMessages = {
143 // Error
Steve Block1e0659c2011-05-24 12:43:12 +0100144 cyclic_proto: ["Cyclic __proto__ value"],
Steve Blocka7e24c12009-10-30 11:49:00 +0000145 // TypeError
Steve Block1e0659c2011-05-24 12:43:12 +0100146 unexpected_token: ["Unexpected token ", "%0"],
147 unexpected_token_number: ["Unexpected number"],
148 unexpected_token_string: ["Unexpected string"],
149 unexpected_token_identifier: ["Unexpected identifier"],
150 unexpected_strict_reserved: ["Unexpected strict mode reserved word"],
151 unexpected_eos: ["Unexpected end of input"],
152 malformed_regexp: ["Invalid regular expression: /", "%0", "/: ", "%1"],
153 unterminated_regexp: ["Invalid regular expression: missing /"],
154 regexp_flags: ["Cannot supply flags when constructing one RegExp from another"],
155 incompatible_method_receiver: ["Method ", "%0", " called on incompatible receiver ", "%1"],
156 invalid_lhs_in_assignment: ["Invalid left-hand side in assignment"],
157 invalid_lhs_in_for_in: ["Invalid left-hand side in for-in"],
158 invalid_lhs_in_postfix_op: ["Invalid left-hand side expression in postfix operation"],
159 invalid_lhs_in_prefix_op: ["Invalid left-hand side expression in prefix operation"],
160 multiple_defaults_in_switch: ["More than one default clause in switch statement"],
161 newline_after_throw: ["Illegal newline after throw"],
162 redeclaration: ["%0", " '", "%1", "' has already been declared"],
163 no_catch_or_finally: ["Missing catch or finally after try"],
164 unknown_label: ["Undefined label '", "%0", "'"],
165 uncaught_exception: ["Uncaught ", "%0"],
166 stack_trace: ["Stack Trace:\n", "%0"],
167 called_non_callable: ["%0", " is not a function"],
168 undefined_method: ["Object ", "%1", " has no method '", "%0", "'"],
169 property_not_function: ["Property '", "%0", "' of object ", "%1", " is not a function"],
170 cannot_convert_to_primitive: ["Cannot convert object to primitive value"],
171 not_constructor: ["%0", " is not a constructor"],
172 not_defined: ["%0", " is not defined"],
173 non_object_property_load: ["Cannot read property '", "%0", "' of ", "%1"],
174 non_object_property_store: ["Cannot set property '", "%0", "' of ", "%1"],
175 non_object_property_call: ["Cannot call method '", "%0", "' of ", "%1"],
176 with_expression: ["%0", " has no properties"],
177 illegal_invocation: ["Illegal invocation"],
178 no_setter_in_callback: ["Cannot set property ", "%0", " of ", "%1", " which has only a getter"],
179 apply_non_function: ["Function.prototype.apply was called on ", "%0", ", which is a ", "%1", " and not a function"],
180 apply_wrong_args: ["Function.prototype.apply: Arguments list has wrong type"],
181 invalid_in_operator_use: ["Cannot use 'in' operator to search for '", "%0", "' in ", "%1"],
182 instanceof_function_expected: ["Expecting a function in instanceof check, but got ", "%0"],
183 instanceof_nonobject_proto: ["Function has non-object prototype '", "%0", "' in instanceof check"],
184 null_to_object: ["Cannot convert null to object"],
185 reduce_no_initial: ["Reduce of empty array with no initial value"],
186 getter_must_be_callable: ["Getter must be a function: ", "%0"],
187 setter_must_be_callable: ["Setter must be a function: ", "%0"],
188 value_and_accessor: ["Invalid property. A property cannot both have accessors and be writable or have a value: ", "%0"],
189 proto_object_or_null: ["Object prototype may only be an Object or null"],
190 property_desc_object: ["Property description must be an object: ", "%0"],
191 redefine_disallowed: ["Cannot redefine property: ", "%0"],
192 define_disallowed: ["Cannot define property, object is not extensible: ", "%0"],
Steve Blocka7e24c12009-10-30 11:49:00 +0000193 // RangeError
Steve Block1e0659c2011-05-24 12:43:12 +0100194 invalid_array_length: ["Invalid array length"],
195 stack_overflow: ["Maximum call stack size exceeded"],
Steve Blocka7e24c12009-10-30 11:49:00 +0000196 // SyntaxError
Steve Block1e0659c2011-05-24 12:43:12 +0100197 unable_to_parse: ["Parse error"],
198 duplicate_regexp_flag: ["Duplicate RegExp flag ", "%0"],
199 invalid_regexp: ["Invalid RegExp pattern /", "%0", "/"],
200 illegal_break: ["Illegal break statement"],
201 illegal_continue: ["Illegal continue statement"],
202 illegal_return: ["Illegal return statement"],
203 error_loading_debugger: ["Error loading debugger"],
204 no_input_to_regexp: ["No input to ", "%0"],
205 invalid_json: ["String '", "%0", "' is not valid JSON"],
206 circular_structure: ["Converting circular structure to JSON"],
207 obj_ctor_property_non_object: ["Object.", "%0", " called on non-object"],
208 array_indexof_not_defined: ["Array.getIndexOf: Argument undefined"],
209 object_not_extensible: ["Can't add property ", "%0", ", object is not extensible"],
210 illegal_access: ["Illegal access"],
211 invalid_preparser_data: ["Invalid preparser data for function ", "%0"],
212 strict_mode_with: ["Strict mode code may not include a with statement"],
213 strict_catch_variable: ["Catch variable may not be eval or arguments in strict mode"],
214 too_many_parameters: ["Too many parameters in function definition"],
215 strict_param_name: ["Parameter name eval or arguments is not allowed in strict mode"],
216 strict_param_dupe: ["Strict mode function may not have duplicate parameter names"],
217 strict_var_name: ["Variable name may not be eval or arguments in strict mode"],
218 strict_function_name: ["Function name may not be eval or arguments in strict mode"],
219 strict_octal_literal: ["Octal literals are not allowed in strict mode."],
220 strict_duplicate_property: ["Duplicate data property in object literal not allowed in strict mode"],
221 accessor_data_property: ["Object literal may not have data and accessor property with the same name"],
222 accessor_get_set: ["Object literal may not have multiple get/set accessors with the same name"],
223 strict_lhs_assignment: ["Assignment to eval or arguments is not allowed in strict mode"],
224 strict_lhs_postfix: ["Postfix increment/decrement may not have eval or arguments operand in strict mode"],
225 strict_lhs_prefix: ["Prefix increment/decrement may not have eval or arguments operand in strict mode"],
226 strict_reserved_word: ["Use of future reserved word in strict mode"],
Ben Murdoche0cee9b2011-05-25 10:26:03 +0100227 strict_delete: ["Delete of an unqualified identifier in strict mode."],
228 strict_delete_property: ["Cannot delete property '", "%0", "' of ", "%1"],
229 strict_const: ["Use of const in strict mode."],
230 strict_function: ["In strict mode code, functions can only be declared at top level or immediately within another function." ],
231 strict_read_only_property: ["Cannot assign to read only property '", "%0", "' of ", "%1"],
232 strict_cannot_assign: ["Cannot assign to read only '", "%0", "' in strict mode"],
Steve Block44f0eee2011-05-26 01:26:41 +0100233 strict_arguments_callee: ["Cannot access property 'callee' of strict mode arguments"],
234 strict_arguments_caller: ["Cannot access property 'caller' of strict mode arguments"],
235 strict_function_caller: ["Cannot access property 'caller' of a strict mode function"],
236 strict_function_arguments: ["Cannot access property 'arguments' of a strict mode function"],
237 strict_caller: ["Illegal access to a strict mode caller function."],
Steve Blocka7e24c12009-10-30 11:49:00 +0000238 };
239 }
Steve Block1e0659c2011-05-24 12:43:12 +0100240 var message_type = %MessageGetType(message);
241 var format = kMessages[message_type];
242 if (!format) return "<unknown message " + message_type + ">";
243 return FormatString(format, message);
Steve Blocka7e24c12009-10-30 11:49:00 +0000244}
245
246
247function GetLineNumber(message) {
Steve Block1e0659c2011-05-24 12:43:12 +0100248 var start_position = %MessageGetStartPosition(message);
249 if (start_position == -1) return kNoLineNumberInfo;
250 var script = %MessageGetScript(message);
251 var location = script.locationFromPosition(start_position, true);
Kristian Monsen25f61362010-05-21 11:50:48 +0100252 if (location == null) return kNoLineNumberInfo;
Steve Blocka7e24c12009-10-30 11:49:00 +0000253 return location.line + 1;
254}
255
256
257// Returns the source code line containing the given source
258// position, or the empty string if the position is invalid.
259function GetSourceLine(message) {
Steve Block1e0659c2011-05-24 12:43:12 +0100260 var script = %MessageGetScript(message);
261 var start_position = %MessageGetStartPosition(message);
262 var location = script.locationFromPosition(start_position, true);
Steve Blocka7e24c12009-10-30 11:49:00 +0000263 if (location == null) return "";
264 location.restrict();
265 return location.sourceText();
266}
267
268
269function MakeTypeError(type, args) {
270 return MakeGenericError($TypeError, type, args);
271}
272
273
274function MakeRangeError(type, args) {
275 return MakeGenericError($RangeError, type, args);
276}
277
278
279function MakeSyntaxError(type, args) {
280 return MakeGenericError($SyntaxError, type, args);
281}
282
283
284function MakeReferenceError(type, args) {
285 return MakeGenericError($ReferenceError, type, args);
286}
287
288
289function MakeEvalError(type, args) {
290 return MakeGenericError($EvalError, type, args);
291}
292
293
294function MakeError(type, args) {
295 return MakeGenericError($Error, type, args);
296}
297
298/**
299 * Find a line number given a specific source position.
300 * @param {number} position The source position.
301 * @return {number} 0 if input too small, -1 if input too large,
302 else the line number.
303 */
304Script.prototype.lineFromPosition = function(position) {
305 var lower = 0;
306 var upper = this.lineCount() - 1;
Steve Blockd0582a62009-12-15 09:54:21 +0000307 var line_ends = this.line_ends;
Steve Blocka7e24c12009-10-30 11:49:00 +0000308
309 // We'll never find invalid positions so bail right away.
Steve Blockd0582a62009-12-15 09:54:21 +0000310 if (position > line_ends[upper]) {
Steve Blocka7e24c12009-10-30 11:49:00 +0000311 return -1;
312 }
313
314 // This means we don't have to safe-guard indexing line_ends[i - 1].
Steve Blockd0582a62009-12-15 09:54:21 +0000315 if (position <= line_ends[0]) {
Steve Blocka7e24c12009-10-30 11:49:00 +0000316 return 0;
317 }
318
319 // Binary search to find line # from position range.
320 while (upper >= 1) {
321 var i = (lower + upper) >> 1;
322
Steve Blockd0582a62009-12-15 09:54:21 +0000323 if (position > line_ends[i]) {
Steve Blocka7e24c12009-10-30 11:49:00 +0000324 lower = i + 1;
Steve Blockd0582a62009-12-15 09:54:21 +0000325 } else if (position <= line_ends[i - 1]) {
Steve Blocka7e24c12009-10-30 11:49:00 +0000326 upper = i - 1;
327 } else {
328 return i;
329 }
330 }
Steve Block1e0659c2011-05-24 12:43:12 +0100331
Steve Blocka7e24c12009-10-30 11:49:00 +0000332 return -1;
333}
334
335/**
336 * Get information on a specific source position.
337 * @param {number} position The source position
338 * @param {boolean} include_resource_offset Set to true to have the resource
339 * offset added to the location
340 * @return {SourceLocation}
341 * If line is negative or not in the source null is returned.
342 */
343Script.prototype.locationFromPosition = function (position,
344 include_resource_offset) {
345 var line = this.lineFromPosition(position);
346 if (line == -1) return null;
347
348 // Determine start, end and column.
Steve Blockd0582a62009-12-15 09:54:21 +0000349 var line_ends = this.line_ends;
350 var start = line == 0 ? 0 : line_ends[line - 1] + 1;
351 var end = line_ends[line];
Steve Block1e0659c2011-05-24 12:43:12 +0100352 if (end > 0 && %_CallFunction(this.source, end - 1, StringCharAt) == '\r') end--;
Steve Blocka7e24c12009-10-30 11:49:00 +0000353 var column = position - start;
354
355 // Adjust according to the offset within the resource.
356 if (include_resource_offset) {
357 line += this.line_offset;
358 if (line == this.line_offset) {
359 column += this.column_offset;
360 }
361 }
362
363 return new SourceLocation(this, position, line, column, start, end);
364};
365
366
367/**
368 * Get information on a specific source line and column possibly offset by a
369 * fixed source position. This function is used to find a source position from
370 * a line and column position. The fixed source position offset is typically
371 * used to find a source position in a function based on a line and column in
372 * the source for the function alone. The offset passed will then be the
373 * start position of the source for the function within the full script source.
374 * @param {number} opt_line The line within the source. Default value is 0
375 * @param {number} opt_column The column in within the line. Default value is 0
376 * @param {number} opt_offset_position The offset from the begining of the
377 * source from where the line and column calculation starts. Default value is 0
378 * @return {SourceLocation}
379 * If line is negative or not in the source null is returned.
380 */
381Script.prototype.locationFromLine = function (opt_line, opt_column, opt_offset_position) {
382 // Default is the first line in the script. Lines in the script is relative
383 // to the offset within the resource.
384 var line = 0;
385 if (!IS_UNDEFINED(opt_line)) {
386 line = opt_line - this.line_offset;
387 }
388
389 // Default is first column. If on the first line add the offset within the
390 // resource.
391 var column = opt_column || 0;
392 if (line == 0) {
393 column -= this.column_offset
394 }
395
396 var offset_position = opt_offset_position || 0;
397 if (line < 0 || column < 0 || offset_position < 0) return null;
398 if (line == 0) {
399 return this.locationFromPosition(offset_position + column, false);
400 } else {
401 // Find the line where the offset position is located.
402 var offset_line = this.lineFromPosition(offset_position);
403
404 if (offset_line == -1 || offset_line + line >= this.lineCount()) {
405 return null;
406 }
407
408 return this.locationFromPosition(this.line_ends[offset_line + line - 1] + 1 + column); // line > 0 here.
409 }
410}
411
412
413/**
414 * Get a slice of source code from the script. The boundaries for the slice is
415 * specified in lines.
416 * @param {number} opt_from_line The first line (zero bound) in the slice.
417 * Default is 0
418 * @param {number} opt_to_column The last line (zero bound) in the slice (non
419 * inclusive). Default is the number of lines in the script
420 * @return {SourceSlice} The source slice or null of the parameters where
421 * invalid
422 */
423Script.prototype.sourceSlice = function (opt_from_line, opt_to_line) {
424 var from_line = IS_UNDEFINED(opt_from_line) ? this.line_offset : opt_from_line;
425 var to_line = IS_UNDEFINED(opt_to_line) ? this.line_offset + this.lineCount() : opt_to_line
426
427 // Adjust according to the offset within the resource.
428 from_line -= this.line_offset;
429 to_line -= this.line_offset;
430 if (from_line < 0) from_line = 0;
431 if (to_line > this.lineCount()) to_line = this.lineCount();
432
433 // Check parameters.
434 if (from_line >= this.lineCount() ||
435 to_line < 0 ||
436 from_line > to_line) {
437 return null;
438 }
439
Steve Blockd0582a62009-12-15 09:54:21 +0000440 var line_ends = this.line_ends;
441 var from_position = from_line == 0 ? 0 : line_ends[from_line - 1] + 1;
442 var to_position = to_line == 0 ? 0 : line_ends[to_line - 1] + 1;
Steve Blocka7e24c12009-10-30 11:49:00 +0000443
444 // Return a source slice with line numbers re-adjusted to the resource.
445 return new SourceSlice(this, from_line + this.line_offset, to_line + this.line_offset,
446 from_position, to_position);
447}
448
449
450Script.prototype.sourceLine = function (opt_line) {
451 // Default is the first line in the script. Lines in the script are relative
452 // to the offset within the resource.
453 var line = 0;
454 if (!IS_UNDEFINED(opt_line)) {
455 line = opt_line - this.line_offset;
456 }
457
458 // Check parameter.
459 if (line < 0 || this.lineCount() <= line) {
460 return null;
461 }
462
463 // Return the source line.
Steve Blockd0582a62009-12-15 09:54:21 +0000464 var line_ends = this.line_ends;
465 var start = line == 0 ? 0 : line_ends[line - 1] + 1;
466 var end = line_ends[line];
Steve Block1e0659c2011-05-24 12:43:12 +0100467 return %_CallFunction(this.source, start, end, StringSubstring);
Steve Blocka7e24c12009-10-30 11:49:00 +0000468}
469
470
471/**
472 * Returns the number of source lines.
473 * @return {number}
474 * Number of source lines.
475 */
476Script.prototype.lineCount = function() {
477 // Return number of source lines.
478 return this.line_ends.length;
479};
480
481
482/**
Steve Block6ded16b2010-05-10 14:33:55 +0100483 * Returns the name of script if available, contents of sourceURL comment
Ben Murdochf87a2032010-10-22 12:50:53 +0100484 * otherwise. See
Steve Block6ded16b2010-05-10 14:33:55 +0100485 * http://fbug.googlecode.com/svn/branches/firebug1.1/docs/ReleaseNotes_1.1.txt
486 * for details on using //@ sourceURL comment to identify scritps that don't
487 * have name.
Ben Murdochf87a2032010-10-22 12:50:53 +0100488 *
Steve Block6ded16b2010-05-10 14:33:55 +0100489 * @return {?string} script name if present, value for //@ sourceURL comment
490 * otherwise.
491 */
492Script.prototype.nameOrSourceURL = function() {
493 if (this.name)
494 return this.name;
Ben Murdochf87a2032010-10-22 12:50:53 +0100495 // TODO(608): the spaces in a regexp below had to be escaped as \040
Steve Block6ded16b2010-05-10 14:33:55 +0100496 // because this file is being processed by js2c whose handling of spaces
497 // in regexps is broken. Also, ['"] are excluded from allowed URLs to
498 // avoid matches against sources that invoke evals with sourceURL.
Steve Block44f0eee2011-05-26 01:26:41 +0100499 // A better solution would be to detect these special comments in
500 // the scanner/parser.
501 var source = ToString(this.source);
502 var sourceUrlPos = %StringIndexOf(source, "sourceURL=", 0);
503 if (sourceUrlPos > 4) {
504 var sourceUrlPattern =
505 /\/\/@[\040\t]sourceURL=[\040\t]*([^\s\'\"]*)[\040\t]*$/gm;
506 // Don't reuse lastMatchInfo here, so we create a new array with room
507 // for four captures (array with length one longer than the index
508 // of the fourth capture, where the numbering is zero-based).
509 var matchInfo = new InternalArray(CAPTURE(3) + 1);
510 var match =
511 %_RegExpExec(sourceUrlPattern, source, sourceUrlPos - 4, matchInfo);
512 if (match) {
513 return SubString(source, matchInfo[CAPTURE(2)], matchInfo[CAPTURE(3)]);
514 }
515 }
516 return this.name;
Steve Block6ded16b2010-05-10 14:33:55 +0100517}
518
519
520/**
Steve Blocka7e24c12009-10-30 11:49:00 +0000521 * Class for source location. A source location is a position within some
522 * source with the following properties:
523 * script : script object for the source
524 * line : source line number
525 * column : source column within the line
526 * position : position within the source
527 * start : position of start of source context (inclusive)
528 * end : position of end of source context (not inclusive)
529 * Source text for the source context is the character interval [start, end[. In
530 * most cases end will point to a newline character. It might point just past
531 * the final position of the source if the last source line does not end with a
532 * newline character.
533 * @param {Script} script The Script object for which this is a location
534 * @param {number} position Source position for the location
535 * @param {number} line The line number for the location
536 * @param {number} column The column within the line for the location
537 * @param {number} start Source position for start of source context
538 * @param {number} end Source position for end of source context
539 * @constructor
540 */
541function SourceLocation(script, position, line, column, start, end) {
542 this.script = script;
543 this.position = position;
544 this.line = line;
545 this.column = column;
546 this.start = start;
547 this.end = end;
548}
549
550
551const kLineLengthLimit = 78;
552
553/**
554 * Restrict source location start and end positions to make the source slice
555 * no more that a certain number of characters wide.
556 * @param {number} opt_limit The with limit of the source text with a default
557 * of 78
558 * @param {number} opt_before The number of characters to prefer before the
559 * position with a default value of 10 less that the limit
560 */
561SourceLocation.prototype.restrict = function (opt_limit, opt_before) {
562 // Find the actual limit to use.
563 var limit;
564 var before;
565 if (!IS_UNDEFINED(opt_limit)) {
566 limit = opt_limit;
567 } else {
568 limit = kLineLengthLimit;
569 }
570 if (!IS_UNDEFINED(opt_before)) {
571 before = opt_before;
572 } else {
573 // If no before is specified center for small limits and perfer more source
574 // before the the position that after for longer limits.
575 if (limit <= 20) {
576 before = $floor(limit / 2);
577 } else {
578 before = limit - 10;
579 }
580 }
581 if (before >= limit) {
582 before = limit - 1;
583 }
584
585 // If the [start, end[ interval is too big we restrict
586 // it in one or both ends. We make sure to always produce
587 // restricted intervals of maximum allowed size.
588 if (this.end - this.start > limit) {
589 var start_limit = this.position - before;
590 var end_limit = this.position + limit - before;
591 if (this.start < start_limit && end_limit < this.end) {
592 this.start = start_limit;
593 this.end = end_limit;
594 } else if (this.start < start_limit) {
595 this.start = this.end - limit;
596 } else {
597 this.end = this.start + limit;
598 }
599 }
600};
601
602
603/**
604 * Get the source text for a SourceLocation
605 * @return {String}
606 * Source text for this location.
607 */
608SourceLocation.prototype.sourceText = function () {
Steve Block1e0659c2011-05-24 12:43:12 +0100609 return %_CallFunction(this.script.source, this.start, this.end, StringSubstring);
Steve Blocka7e24c12009-10-30 11:49:00 +0000610};
611
612
613/**
614 * Class for a source slice. A source slice is a part of a script source with
615 * the following properties:
616 * script : script object for the source
617 * from_line : line number for the first line in the slice
618 * to_line : source line number for the last line in the slice
619 * from_position : position of the first character in the slice
620 * to_position : position of the last character in the slice
621 * The to_line and to_position are not included in the slice, that is the lines
622 * in the slice are [from_line, to_line[. Likewise the characters in the slice
623 * are [from_position, to_position[.
624 * @param {Script} script The Script object for the source slice
625 * @param {number} from_line
626 * @param {number} to_line
627 * @param {number} from_position
628 * @param {number} to_position
629 * @constructor
630 */
631function SourceSlice(script, from_line, to_line, from_position, to_position) {
632 this.script = script;
633 this.from_line = from_line;
634 this.to_line = to_line;
635 this.from_position = from_position;
636 this.to_position = to_position;
637}
638
639
640/**
641 * Get the source text for a SourceSlice
642 * @return {String} Source text for this slice. The last line will include
643 * the line terminating characters (if any)
644 */
645SourceSlice.prototype.sourceText = function () {
Steve Block1e0659c2011-05-24 12:43:12 +0100646 return %_CallFunction(this.script.source,
647 this.from_position,
648 this.to_position,
649 StringSubstring);
Steve Blocka7e24c12009-10-30 11:49:00 +0000650};
651
652
653// Returns the offset of the given position within the containing
654// line.
655function GetPositionInLine(message) {
Steve Block1e0659c2011-05-24 12:43:12 +0100656 var script = %MessageGetScript(message);
657 var start_position = %MessageGetStartPosition(message);
658 var location = script.locationFromPosition(start_position, false);
Steve Blocka7e24c12009-10-30 11:49:00 +0000659 if (location == null) return -1;
660 location.restrict();
Steve Block1e0659c2011-05-24 12:43:12 +0100661 return start_position - location.start;
Steve Blocka7e24c12009-10-30 11:49:00 +0000662}
663
664
665function GetStackTraceLine(recv, fun, pos, isGlobal) {
666 return FormatSourcePosition(new CallSite(recv, fun, pos));
667}
668
669// ----------------------------------------------------------------------------
670// Error implementation
671
672// Defines accessors for a property that is calculated the first time
673// the property is read.
674function DefineOneShotAccessor(obj, name, fun) {
675 // Note that the accessors consistently operate on 'obj', not 'this'.
676 // Since the object may occur in someone else's prototype chain we
677 // can't rely on 'this' being the same as 'obj'.
678 var hasBeenSet = false;
679 var value;
680 obj.__defineGetter__(name, function () {
681 if (hasBeenSet) {
682 return value;
683 }
684 hasBeenSet = true;
685 value = fun(obj);
686 return value;
687 });
688 obj.__defineSetter__(name, function (v) {
689 hasBeenSet = true;
690 value = v;
691 });
692}
693
694function CallSite(receiver, fun, pos) {
695 this.receiver = receiver;
696 this.fun = fun;
697 this.pos = pos;
698}
699
700CallSite.prototype.getThis = function () {
701 return this.receiver;
702};
703
704CallSite.prototype.getTypeName = function () {
705 var constructor = this.receiver.constructor;
706 if (!constructor)
Steve Block1e0659c2011-05-24 12:43:12 +0100707 return %_CallFunction(this.receiver, ObjectToString);
Steve Blocka7e24c12009-10-30 11:49:00 +0000708 var constructorName = constructor.name;
709 if (!constructorName)
Steve Block1e0659c2011-05-24 12:43:12 +0100710 return %_CallFunction(this.receiver, ObjectToString);
Steve Blocka7e24c12009-10-30 11:49:00 +0000711 return constructorName;
712};
713
714CallSite.prototype.isToplevel = function () {
715 if (this.receiver == null)
716 return true;
717 return IS_GLOBAL(this.receiver);
718};
719
720CallSite.prototype.isEval = function () {
721 var script = %FunctionGetScript(this.fun);
Andrei Popescu31002712010-02-23 13:46:05 +0000722 return script && script.compilation_type == COMPILATION_TYPE_EVAL;
Steve Blocka7e24c12009-10-30 11:49:00 +0000723};
724
725CallSite.prototype.getEvalOrigin = function () {
726 var script = %FunctionGetScript(this.fun);
Steve Blockd0582a62009-12-15 09:54:21 +0000727 return FormatEvalOrigin(script);
Steve Blocka7e24c12009-10-30 11:49:00 +0000728};
729
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100730CallSite.prototype.getScriptNameOrSourceURL = function () {
731 var script = %FunctionGetScript(this.fun);
732 return script ? script.nameOrSourceURL() : null;
733};
734
Steve Blocka7e24c12009-10-30 11:49:00 +0000735CallSite.prototype.getFunction = function () {
736 return this.fun;
737};
738
739CallSite.prototype.getFunctionName = function () {
740 // See if the function knows its own name
741 var name = this.fun.name;
742 if (name) {
743 return name;
744 } else {
745 return %FunctionGetInferredName(this.fun);
746 }
747 // Maybe this is an evaluation?
748 var script = %FunctionGetScript(this.fun);
Andrei Popescu31002712010-02-23 13:46:05 +0000749 if (script && script.compilation_type == COMPILATION_TYPE_EVAL)
Steve Blocka7e24c12009-10-30 11:49:00 +0000750 return "eval";
751 return null;
752};
753
754CallSite.prototype.getMethodName = function () {
755 // See if we can find a unique property on the receiver that holds
756 // this function.
757 var ownName = this.fun.name;
Iain Merrick75681382010-08-19 15:07:18 +0100758 if (ownName && this.receiver &&
Steve Block1e0659c2011-05-24 12:43:12 +0100759 (%_CallFunction(this.receiver, ownName, ObjectLookupGetter) === this.fun ||
760 %_CallFunction(this.receiver, ownName, ObjectLookupSetter) === this.fun ||
Iain Merrick75681382010-08-19 15:07:18 +0100761 this.receiver[ownName] === this.fun)) {
Steve Blocka7e24c12009-10-30 11:49:00 +0000762 // To handle DontEnum properties we guess that the method has
763 // the same name as the function.
764 return ownName;
Iain Merrick75681382010-08-19 15:07:18 +0100765 }
Steve Blocka7e24c12009-10-30 11:49:00 +0000766 var name = null;
767 for (var prop in this.receiver) {
Iain Merrick75681382010-08-19 15:07:18 +0100768 if (this.receiver.__lookupGetter__(prop) === this.fun ||
769 this.receiver.__lookupSetter__(prop) === this.fun ||
770 (!this.receiver.__lookupGetter__(prop) && this.receiver[prop] === this.fun)) {
771 // If we find more than one match bail out to avoid confusion.
Steve Blocka7e24c12009-10-30 11:49:00 +0000772 if (name)
773 return null;
774 name = prop;
775 }
776 }
777 if (name)
778 return name;
779 return null;
780};
781
782CallSite.prototype.getFileName = function () {
783 var script = %FunctionGetScript(this.fun);
784 return script ? script.name : null;
785};
786
787CallSite.prototype.getLineNumber = function () {
788 if (this.pos == -1)
789 return null;
790 var script = %FunctionGetScript(this.fun);
791 var location = null;
792 if (script) {
793 location = script.locationFromPosition(this.pos, true);
794 }
795 return location ? location.line + 1 : null;
796};
797
798CallSite.prototype.getColumnNumber = function () {
799 if (this.pos == -1)
800 return null;
801 var script = %FunctionGetScript(this.fun);
802 var location = null;
803 if (script) {
804 location = script.locationFromPosition(this.pos, true);
805 }
Steve Blockd0582a62009-12-15 09:54:21 +0000806 return location ? location.column + 1: null;
Steve Blocka7e24c12009-10-30 11:49:00 +0000807};
808
809CallSite.prototype.isNative = function () {
810 var script = %FunctionGetScript(this.fun);
Andrei Popescu31002712010-02-23 13:46:05 +0000811 return script ? (script.type == TYPE_NATIVE) : false;
Steve Blocka7e24c12009-10-30 11:49:00 +0000812};
813
814CallSite.prototype.getPosition = function () {
815 return this.pos;
816};
817
818CallSite.prototype.isConstructor = function () {
819 var constructor = this.receiver ? this.receiver.constructor : null;
820 if (!constructor)
821 return false;
822 return this.fun === constructor;
823};
824
Steve Blockd0582a62009-12-15 09:54:21 +0000825function FormatEvalOrigin(script) {
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100826 var sourceURL = script.nameOrSourceURL();
827 if (sourceURL)
828 return sourceURL;
829
830 var eval_origin = "eval at ";
Steve Blockd0582a62009-12-15 09:54:21 +0000831 if (script.eval_from_function_name) {
832 eval_origin += script.eval_from_function_name;
833 } else {
834 eval_origin += "<anonymous>";
835 }
Steve Block6ded16b2010-05-10 14:33:55 +0100836
Steve Blockd0582a62009-12-15 09:54:21 +0000837 var eval_from_script = script.eval_from_script;
838 if (eval_from_script) {
Andrei Popescu31002712010-02-23 13:46:05 +0000839 if (eval_from_script.compilation_type == COMPILATION_TYPE_EVAL) {
Steve Blockd0582a62009-12-15 09:54:21 +0000840 // eval script originated from another eval.
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100841 eval_origin += " (" + FormatEvalOrigin(eval_from_script) + ")";
Steve Blockd0582a62009-12-15 09:54:21 +0000842 } else {
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100843 // eval script originated from "real" source.
Steve Blockd0582a62009-12-15 09:54:21 +0000844 if (eval_from_script.name) {
845 eval_origin += " (" + eval_from_script.name;
846 var location = eval_from_script.locationFromPosition(script.eval_from_script_position, true);
847 if (location) {
848 eval_origin += ":" + (location.line + 1);
849 eval_origin += ":" + (location.column + 1);
850 }
851 eval_origin += ")"
852 } else {
853 eval_origin += " (unknown source)";
854 }
855 }
856 }
Steve Block6ded16b2010-05-10 14:33:55 +0100857
Steve Blockd0582a62009-12-15 09:54:21 +0000858 return eval_origin;
859};
860
Steve Blocka7e24c12009-10-30 11:49:00 +0000861function FormatSourcePosition(frame) {
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100862 var fileName;
Steve Blocka7e24c12009-10-30 11:49:00 +0000863 var fileLocation = "";
864 if (frame.isNative()) {
865 fileLocation = "native";
866 } else if (frame.isEval()) {
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100867 fileName = frame.getScriptNameOrSourceURL();
868 if (!fileName)
869 fileLocation = frame.getEvalOrigin();
Steve Blocka7e24c12009-10-30 11:49:00 +0000870 } else {
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100871 fileName = frame.getFileName();
872 }
873
874 if (fileName) {
875 fileLocation += fileName;
876 var lineNumber = frame.getLineNumber();
877 if (lineNumber != null) {
878 fileLocation += ":" + lineNumber;
879 var columnNumber = frame.getColumnNumber();
880 if (columnNumber) {
881 fileLocation += ":" + columnNumber;
Steve Blocka7e24c12009-10-30 11:49:00 +0000882 }
883 }
884 }
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100885
Steve Blocka7e24c12009-10-30 11:49:00 +0000886 if (!fileLocation) {
887 fileLocation = "unknown source";
888 }
889 var line = "";
890 var functionName = frame.getFunction().name;
Steve Blocka7e24c12009-10-30 11:49:00 +0000891 var addPrefix = true;
892 var isConstructor = frame.isConstructor();
893 var isMethodCall = !(frame.isToplevel() || isConstructor);
894 if (isMethodCall) {
Iain Merrick9ac36c92010-09-13 15:29:50 +0100895 var methodName = frame.getMethodName();
Steve Blocka7e24c12009-10-30 11:49:00 +0000896 line += frame.getTypeName() + ".";
897 if (functionName) {
898 line += functionName;
899 if (methodName && (methodName != functionName)) {
900 line += " [as " + methodName + "]";
901 }
902 } else {
903 line += methodName || "<anonymous>";
904 }
905 } else if (isConstructor) {
906 line += "new " + (functionName || "<anonymous>");
907 } else if (functionName) {
908 line += functionName;
909 } else {
910 line += fileLocation;
911 addPrefix = false;
912 }
913 if (addPrefix) {
914 line += " (" + fileLocation + ")";
915 }
916 return line;
917}
918
919function FormatStackTrace(error, frames) {
920 var lines = [];
921 try {
922 lines.push(error.toString());
923 } catch (e) {
924 try {
925 lines.push("<error: " + e + ">");
926 } catch (ee) {
927 lines.push("<error>");
928 }
929 }
930 for (var i = 0; i < frames.length; i++) {
931 var frame = frames[i];
932 var line;
933 try {
934 line = FormatSourcePosition(frame);
935 } catch (e) {
936 try {
937 line = "<error: " + e + ">";
938 } catch (ee) {
939 // Any code that reaches this point is seriously nasty!
940 line = "<error>";
941 }
942 }
943 lines.push(" at " + line);
944 }
945 return lines.join("\n");
946}
947
948function FormatRawStackTrace(error, raw_stack) {
949 var frames = [ ];
Ben Murdochb0fe1622011-05-05 13:52:32 +0100950 for (var i = 0; i < raw_stack.length; i += 4) {
Steve Blocka7e24c12009-10-30 11:49:00 +0000951 var recv = raw_stack[i];
Ben Murdochb0fe1622011-05-05 13:52:32 +0100952 var fun = raw_stack[i + 1];
953 var code = raw_stack[i + 2];
954 var pc = raw_stack[i + 3];
955 var pos = %FunctionGetPositionForOffset(code, pc);
Steve Blocka7e24c12009-10-30 11:49:00 +0000956 frames.push(new CallSite(recv, fun, pos));
957 }
958 if (IS_FUNCTION($Error.prepareStackTrace)) {
959 return $Error.prepareStackTrace(error, frames);
960 } else {
961 return FormatStackTrace(error, frames);
962 }
963}
964
965function DefineError(f) {
966 // Store the error function in both the global object
967 // and the runtime object. The function is fetched
968 // from the runtime object when throwing errors from
969 // within the runtime system to avoid strange side
970 // effects when overwriting the error functions from
971 // user code.
972 var name = f.name;
973 %SetProperty(global, name, f, DONT_ENUM);
974 this['$' + name] = f;
975 // Configure the error function.
976 if (name == 'Error') {
977 // The prototype of the Error object must itself be an error.
978 // However, it can't be an instance of the Error object because
979 // it hasn't been properly configured yet. Instead we create a
980 // special not-a-true-error-but-close-enough object.
981 function ErrorPrototype() {}
982 %FunctionSetPrototype(ErrorPrototype, $Object.prototype);
983 %FunctionSetInstanceClassName(ErrorPrototype, 'Error');
984 %FunctionSetPrototype(f, new ErrorPrototype());
985 } else {
986 %FunctionSetPrototype(f, new $Error());
987 }
988 %FunctionSetInstanceClassName(f, 'Error');
989 %SetProperty(f.prototype, 'constructor', f, DONT_ENUM);
Ben Murdochb8e0da22011-05-16 14:20:40 +0100990 // The name property on the prototype of error objects is not
991 // specified as being read-one and dont-delete. However, allowing
992 // overwriting allows leaks of error objects between script blocks
993 // in the same context in a browser setting. Therefore we fix the
994 // name.
995 %SetProperty(f.prototype, "name", name, READ_ONLY | DONT_DELETE);
Steve Blocka7e24c12009-10-30 11:49:00 +0000996 %SetCode(f, function(m) {
997 if (%_IsConstructCall()) {
Ben Murdochb8e0da22011-05-16 14:20:40 +0100998 // Define all the expected properties directly on the error
999 // object. This avoids going through getters and setters defined
1000 // on prototype objects.
1001 %IgnoreAttributesAndSetProperty(this, 'stack', void 0);
1002 %IgnoreAttributesAndSetProperty(this, 'arguments', void 0);
1003 %IgnoreAttributesAndSetProperty(this, 'type', void 0);
Steve Blocka7e24c12009-10-30 11:49:00 +00001004 if (m === kAddMessageAccessorsMarker) {
Ben Murdochb8e0da22011-05-16 14:20:40 +01001005 // DefineOneShotAccessor always inserts a message property and
1006 // ignores setters.
Steve Blocka7e24c12009-10-30 11:49:00 +00001007 DefineOneShotAccessor(this, 'message', function (obj) {
Steve Block1e0659c2011-05-24 12:43:12 +01001008 return FormatMessage(%NewMessageObject(obj.type, obj.arguments));
Steve Blocka7e24c12009-10-30 11:49:00 +00001009 });
1010 } else if (!IS_UNDEFINED(m)) {
Ben Murdochb8e0da22011-05-16 14:20:40 +01001011 %IgnoreAttributesAndSetProperty(this, 'message', ToString(m));
Steve Blocka7e24c12009-10-30 11:49:00 +00001012 }
1013 captureStackTrace(this, f);
1014 } else {
1015 return new f(m);
1016 }
1017 });
1018}
1019
1020function captureStackTrace(obj, cons_opt) {
1021 var stackTraceLimit = $Error.stackTraceLimit;
Steve Block1e0659c2011-05-24 12:43:12 +01001022 if (!stackTraceLimit || !IS_NUMBER(stackTraceLimit)) return;
Steve Blocka7e24c12009-10-30 11:49:00 +00001023 if (stackTraceLimit < 0 || stackTraceLimit > 10000)
1024 stackTraceLimit = 10000;
Steve Block1e0659c2011-05-24 12:43:12 +01001025 var raw_stack = %CollectStackTrace(cons_opt
1026 ? cons_opt
1027 : captureStackTrace, stackTraceLimit);
Steve Blocka7e24c12009-10-30 11:49:00 +00001028 DefineOneShotAccessor(obj, 'stack', function (obj) {
1029 return FormatRawStackTrace(obj, raw_stack);
1030 });
1031};
1032
1033$Math.__proto__ = global.Object.prototype;
1034
1035DefineError(function Error() { });
1036DefineError(function TypeError() { });
1037DefineError(function RangeError() { });
1038DefineError(function SyntaxError() { });
1039DefineError(function ReferenceError() { });
1040DefineError(function EvalError() { });
1041DefineError(function URIError() { });
1042
1043$Error.captureStackTrace = captureStackTrace;
1044
1045// Setup extra properties of the Error.prototype object.
1046$Error.prototype.message = '';
1047
Steve Block1e0659c2011-05-24 12:43:12 +01001048// Global list of error objects visited during errorToString. This is
1049// used to detect cycles in error toString formatting.
1050var visited_errors = new $Array();
1051var cyclic_error_marker = new $Object();
1052
1053function errorToStringDetectCycle() {
1054 if (!%PushIfAbsent(visited_errors, this)) throw cyclic_error_marker;
1055 try {
1056 var type = this.type;
1057 if (type && !%_CallFunction(this, "message", ObjectHasOwnProperty)) {
1058 var formatted = FormatMessage(%NewMessageObject(type, this.arguments));
1059 return this.name + ": " + formatted;
1060 }
1061 var message = %_CallFunction(this, "message", ObjectHasOwnProperty)
1062 ? (": " + this.message)
1063 : "";
1064 return this.name + message;
1065 } finally {
1066 visited_errors.length = visited_errors.length - 1;
Steve Blocka7e24c12009-10-30 11:49:00 +00001067 }
Steve Block1e0659c2011-05-24 12:43:12 +01001068}
1069
1070function errorToString() {
1071 // This helper function is needed because access to properties on
1072 // the builtins object do not work inside of a catch clause.
1073 function isCyclicErrorMarker(o) { return o === cyclic_error_marker; }
1074
1075 try {
1076 return %_CallFunction(this, errorToStringDetectCycle);
1077 } catch(e) {
1078 // If this error message was encountered already return the empty
1079 // string for it instead of recursively formatting it.
1080 if (isCyclicErrorMarker(e)) return '';
1081 else throw e;
1082 }
Ben Murdochb8e0da22011-05-16 14:20:40 +01001083}
1084
Ben Murdoche0cee9b2011-05-25 10:26:03 +01001085
1086InstallFunctions($Error.prototype, DONT_ENUM, ['toString', errorToString]);
Steve Blocka7e24c12009-10-30 11:49:00 +00001087
Steve Blocka7e24c12009-10-30 11:49:00 +00001088// Boilerplate for exceptions for stack overflows. Used from
Steve Block44f0eee2011-05-26 01:26:41 +01001089// Isolate::StackOverflow().
Steve Blocka7e24c12009-10-30 11:49:00 +00001090const kStackOverflowBoilerplate = MakeRangeError('stack_overflow', []);