| Steve Block | a7e24c1 | 2009-10-30 11:49:00 +0000 | [diff] [blame] | 1 | // 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 Popescu | 3100271 | 2010-02-23 13:46:05 +0000 | [diff] [blame] | 30 | // |
| 31 | // Matches Script::Type from objects.h |
| 32 | var TYPE_NATIVE = 0; |
| 33 | var TYPE_EXTENSION = 1; |
| 34 | var TYPE_NORMAL = 2; |
| 35 | |
| 36 | // Matches Script::CompilationType from objects.h |
| 37 | var COMPILATION_TYPE_HOST = 0; |
| 38 | var COMPILATION_TYPE_EVAL = 1; |
| 39 | var COMPILATION_TYPE_JSON = 2; |
| Steve Block | a7e24c1 | 2009-10-30 11:49:00 +0000 | [diff] [blame] | 40 | |
| Kristian Monsen | 25f6136 | 2010-05-21 11:50:48 +0100 | [diff] [blame] | 41 | // Matches Messages::kNoLineNumberInfo from v8.h |
| 42 | var kNoLineNumberInfo = 0; |
| 43 | |
| Steve Block | a7e24c1 | 2009-10-30 11:49:00 +0000 | [diff] [blame] | 44 | // 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. |
| 47 | var kAddMessageAccessorsMarker = { }; |
| 48 | |
| Steve Block | 1e0659c | 2011-05-24 12:43:12 +0100 | [diff] [blame] | 49 | var kMessages = 0; |
| Steve Block | a7e24c1 | 2009-10-30 11:49:00 +0000 | [diff] [blame] | 50 | |
| Steve Block | 1e0659c | 2011-05-24 12:43:12 +0100 | [diff] [blame] | 51 | var kReplacementMarkers = [ "%0", "%1", "%2", "%3" ]; |
| 52 | |
| 53 | function 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 Block | a7e24c1 | 2009-10-30 11:49:00 +0000 | [diff] [blame] | 66 | } |
| Steve Block | 1e0659c | 2011-05-24 12:43:12 +0100 | [diff] [blame] | 67 | result += str; |
| Steve Block | a7e24c1 | 2009-10-30 11:49:00 +0000 | [diff] [blame] | 68 | } |
| Steve Block | 1e0659c | 2011-05-24 12:43:12 +0100 | [diff] [blame] | 69 | return result; |
| Steve Block | a7e24c1 | 2009-10-30 11:49:00 +0000 | [diff] [blame] | 70 | } |
| 71 | |
| 72 | |
| Steve Block | 1e0659c | 2011-05-24 12:43:12 +0100 | [diff] [blame] | 73 | // 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. |
| 78 | function 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 Block | a7e24c1 | 2009-10-30 11:49:00 +0000 | [diff] [blame] | 87 | |
| 88 | |
| Steve Block | 1e0659c | 2011-05-24 12:43:12 +0100 | [diff] [blame] | 89 | // 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. |
| 93 | function ToStringCheckErrorObject(obj) { |
| 94 | if (IsNativeErrorObject(obj)) { |
| 95 | return %_CallFunction(obj, errorToString); |
| 96 | } else { |
| 97 | return ToString(obj); |
| Steve Block | a7e24c1 | 2009-10-30 11:49:00 +0000 | [diff] [blame] | 98 | } |
| Steve Block | a7e24c1 | 2009-10-30 11:49:00 +0000 | [diff] [blame] | 99 | } |
| 100 | |
| 101 | |
| 102 | function ToDetailString(obj) { |
| 103 | if (obj != null && IS_OBJECT(obj) && obj.toString === $Object.prototype.toString) { |
| 104 | var constructor = obj.constructor; |
| Steve Block | 1e0659c | 2011-05-24 12:43:12 +0100 | [diff] [blame] | 105 | if (!constructor) return ToStringCheckErrorObject(obj); |
| Steve Block | a7e24c1 | 2009-10-30 11:49:00 +0000 | [diff] [blame] | 106 | var constructorName = constructor.name; |
| Steve Block | 1e0659c | 2011-05-24 12:43:12 +0100 | [diff] [blame] | 107 | if (!constructorName || !IS_STRING(constructorName)) { |
| 108 | return ToStringCheckErrorObject(obj); |
| 109 | } |
| 110 | return "#<" + constructorName + ">"; |
| Steve Block | a7e24c1 | 2009-10-30 11:49:00 +0000 | [diff] [blame] | 111 | } else { |
| Steve Block | 1e0659c | 2011-05-24 12:43:12 +0100 | [diff] [blame] | 112 | return ToStringCheckErrorObject(obj); |
| Steve Block | a7e24c1 | 2009-10-30 11:49:00 +0000 | [diff] [blame] | 113 | } |
| 114 | } |
| 115 | |
| 116 | |
| 117 | function 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. |
| 140 | function FormatMessage(message) { |
| 141 | if (kMessages === 0) { |
| 142 | kMessages = { |
| 143 | // Error |
| Steve Block | 1e0659c | 2011-05-24 12:43:12 +0100 | [diff] [blame] | 144 | cyclic_proto: ["Cyclic __proto__ value"], |
| Steve Block | a7e24c1 | 2009-10-30 11:49:00 +0000 | [diff] [blame] | 145 | // TypeError |
| Steve Block | 1e0659c | 2011-05-24 12:43:12 +0100 | [diff] [blame] | 146 | 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 Block | a7e24c1 | 2009-10-30 11:49:00 +0000 | [diff] [blame] | 193 | // RangeError |
| Steve Block | 1e0659c | 2011-05-24 12:43:12 +0100 | [diff] [blame] | 194 | invalid_array_length: ["Invalid array length"], |
| 195 | stack_overflow: ["Maximum call stack size exceeded"], |
| Steve Block | a7e24c1 | 2009-10-30 11:49:00 +0000 | [diff] [blame] | 196 | // SyntaxError |
| Steve Block | 1e0659c | 2011-05-24 12:43:12 +0100 | [diff] [blame] | 197 | 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 Murdoch | e0cee9b | 2011-05-25 10:26:03 +0100 | [diff] [blame] | 227 | 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 Block | a7e24c1 | 2009-10-30 11:49:00 +0000 | [diff] [blame] | 233 | }; |
| 234 | } |
| Steve Block | 1e0659c | 2011-05-24 12:43:12 +0100 | [diff] [blame] | 235 | var message_type = %MessageGetType(message); |
| 236 | var format = kMessages[message_type]; |
| 237 | if (!format) return "<unknown message " + message_type + ">"; |
| 238 | return FormatString(format, message); |
| Steve Block | a7e24c1 | 2009-10-30 11:49:00 +0000 | [diff] [blame] | 239 | } |
| 240 | |
| 241 | |
| 242 | function GetLineNumber(message) { |
| Steve Block | 1e0659c | 2011-05-24 12:43:12 +0100 | [diff] [blame] | 243 | var start_position = %MessageGetStartPosition(message); |
| 244 | if (start_position == -1) return kNoLineNumberInfo; |
| 245 | var script = %MessageGetScript(message); |
| 246 | var location = script.locationFromPosition(start_position, true); |
| Kristian Monsen | 25f6136 | 2010-05-21 11:50:48 +0100 | [diff] [blame] | 247 | if (location == null) return kNoLineNumberInfo; |
| Steve Block | a7e24c1 | 2009-10-30 11:49:00 +0000 | [diff] [blame] | 248 | return location.line + 1; |
| 249 | } |
| 250 | |
| 251 | |
| 252 | // Returns the source code line containing the given source |
| 253 | // position, or the empty string if the position is invalid. |
| 254 | function GetSourceLine(message) { |
| Steve Block | 1e0659c | 2011-05-24 12:43:12 +0100 | [diff] [blame] | 255 | var script = %MessageGetScript(message); |
| 256 | var start_position = %MessageGetStartPosition(message); |
| 257 | var location = script.locationFromPosition(start_position, true); |
| Steve Block | a7e24c1 | 2009-10-30 11:49:00 +0000 | [diff] [blame] | 258 | if (location == null) return ""; |
| 259 | location.restrict(); |
| 260 | return location.sourceText(); |
| 261 | } |
| 262 | |
| 263 | |
| 264 | function MakeTypeError(type, args) { |
| 265 | return MakeGenericError($TypeError, type, args); |
| 266 | } |
| 267 | |
| 268 | |
| 269 | function MakeRangeError(type, args) { |
| 270 | return MakeGenericError($RangeError, type, args); |
| 271 | } |
| 272 | |
| 273 | |
| 274 | function MakeSyntaxError(type, args) { |
| 275 | return MakeGenericError($SyntaxError, type, args); |
| 276 | } |
| 277 | |
| 278 | |
| 279 | function MakeReferenceError(type, args) { |
| 280 | return MakeGenericError($ReferenceError, type, args); |
| 281 | } |
| 282 | |
| 283 | |
| 284 | function MakeEvalError(type, args) { |
| 285 | return MakeGenericError($EvalError, type, args); |
| 286 | } |
| 287 | |
| 288 | |
| 289 | function MakeError(type, args) { |
| 290 | return MakeGenericError($Error, type, args); |
| 291 | } |
| 292 | |
| 293 | /** |
| 294 | * Find a line number given a specific source position. |
| 295 | * @param {number} position The source position. |
| 296 | * @return {number} 0 if input too small, -1 if input too large, |
| 297 | else the line number. |
| 298 | */ |
| 299 | Script.prototype.lineFromPosition = function(position) { |
| 300 | var lower = 0; |
| 301 | var upper = this.lineCount() - 1; |
| Steve Block | d0582a6 | 2009-12-15 09:54:21 +0000 | [diff] [blame] | 302 | var line_ends = this.line_ends; |
| Steve Block | a7e24c1 | 2009-10-30 11:49:00 +0000 | [diff] [blame] | 303 | |
| 304 | // We'll never find invalid positions so bail right away. |
| Steve Block | d0582a6 | 2009-12-15 09:54:21 +0000 | [diff] [blame] | 305 | if (position > line_ends[upper]) { |
| Steve Block | a7e24c1 | 2009-10-30 11:49:00 +0000 | [diff] [blame] | 306 | return -1; |
| 307 | } |
| 308 | |
| 309 | // This means we don't have to safe-guard indexing line_ends[i - 1]. |
| Steve Block | d0582a6 | 2009-12-15 09:54:21 +0000 | [diff] [blame] | 310 | if (position <= line_ends[0]) { |
| Steve Block | a7e24c1 | 2009-10-30 11:49:00 +0000 | [diff] [blame] | 311 | return 0; |
| 312 | } |
| 313 | |
| 314 | // Binary search to find line # from position range. |
| 315 | while (upper >= 1) { |
| 316 | var i = (lower + upper) >> 1; |
| 317 | |
| Steve Block | d0582a6 | 2009-12-15 09:54:21 +0000 | [diff] [blame] | 318 | if (position > line_ends[i]) { |
| Steve Block | a7e24c1 | 2009-10-30 11:49:00 +0000 | [diff] [blame] | 319 | lower = i + 1; |
| Steve Block | d0582a6 | 2009-12-15 09:54:21 +0000 | [diff] [blame] | 320 | } else if (position <= line_ends[i - 1]) { |
| Steve Block | a7e24c1 | 2009-10-30 11:49:00 +0000 | [diff] [blame] | 321 | upper = i - 1; |
| 322 | } else { |
| 323 | return i; |
| 324 | } |
| 325 | } |
| Steve Block | 1e0659c | 2011-05-24 12:43:12 +0100 | [diff] [blame] | 326 | |
| Steve Block | a7e24c1 | 2009-10-30 11:49:00 +0000 | [diff] [blame] | 327 | return -1; |
| 328 | } |
| 329 | |
| 330 | /** |
| 331 | * Get information on a specific source position. |
| 332 | * @param {number} position The source position |
| 333 | * @param {boolean} include_resource_offset Set to true to have the resource |
| 334 | * offset added to the location |
| 335 | * @return {SourceLocation} |
| 336 | * If line is negative or not in the source null is returned. |
| 337 | */ |
| 338 | Script.prototype.locationFromPosition = function (position, |
| 339 | include_resource_offset) { |
| 340 | var line = this.lineFromPosition(position); |
| 341 | if (line == -1) return null; |
| 342 | |
| 343 | // Determine start, end and column. |
| Steve Block | d0582a6 | 2009-12-15 09:54:21 +0000 | [diff] [blame] | 344 | var line_ends = this.line_ends; |
| 345 | var start = line == 0 ? 0 : line_ends[line - 1] + 1; |
| 346 | var end = line_ends[line]; |
| Steve Block | 1e0659c | 2011-05-24 12:43:12 +0100 | [diff] [blame] | 347 | if (end > 0 && %_CallFunction(this.source, end - 1, StringCharAt) == '\r') end--; |
| Steve Block | a7e24c1 | 2009-10-30 11:49:00 +0000 | [diff] [blame] | 348 | var column = position - start; |
| 349 | |
| 350 | // Adjust according to the offset within the resource. |
| 351 | if (include_resource_offset) { |
| 352 | line += this.line_offset; |
| 353 | if (line == this.line_offset) { |
| 354 | column += this.column_offset; |
| 355 | } |
| 356 | } |
| 357 | |
| 358 | return new SourceLocation(this, position, line, column, start, end); |
| 359 | }; |
| 360 | |
| 361 | |
| 362 | /** |
| 363 | * Get information on a specific source line and column possibly offset by a |
| 364 | * fixed source position. This function is used to find a source position from |
| 365 | * a line and column position. The fixed source position offset is typically |
| 366 | * used to find a source position in a function based on a line and column in |
| 367 | * the source for the function alone. The offset passed will then be the |
| 368 | * start position of the source for the function within the full script source. |
| 369 | * @param {number} opt_line The line within the source. Default value is 0 |
| 370 | * @param {number} opt_column The column in within the line. Default value is 0 |
| 371 | * @param {number} opt_offset_position The offset from the begining of the |
| 372 | * source from where the line and column calculation starts. Default value is 0 |
| 373 | * @return {SourceLocation} |
| 374 | * If line is negative or not in the source null is returned. |
| 375 | */ |
| 376 | Script.prototype.locationFromLine = function (opt_line, opt_column, opt_offset_position) { |
| 377 | // Default is the first line in the script. Lines in the script is relative |
| 378 | // to the offset within the resource. |
| 379 | var line = 0; |
| 380 | if (!IS_UNDEFINED(opt_line)) { |
| 381 | line = opt_line - this.line_offset; |
| 382 | } |
| 383 | |
| 384 | // Default is first column. If on the first line add the offset within the |
| 385 | // resource. |
| 386 | var column = opt_column || 0; |
| 387 | if (line == 0) { |
| 388 | column -= this.column_offset |
| 389 | } |
| 390 | |
| 391 | var offset_position = opt_offset_position || 0; |
| 392 | if (line < 0 || column < 0 || offset_position < 0) return null; |
| 393 | if (line == 0) { |
| 394 | return this.locationFromPosition(offset_position + column, false); |
| 395 | } else { |
| 396 | // Find the line where the offset position is located. |
| 397 | var offset_line = this.lineFromPosition(offset_position); |
| 398 | |
| 399 | if (offset_line == -1 || offset_line + line >= this.lineCount()) { |
| 400 | return null; |
| 401 | } |
| 402 | |
| 403 | return this.locationFromPosition(this.line_ends[offset_line + line - 1] + 1 + column); // line > 0 here. |
| 404 | } |
| 405 | } |
| 406 | |
| 407 | |
| 408 | /** |
| 409 | * Get a slice of source code from the script. The boundaries for the slice is |
| 410 | * specified in lines. |
| 411 | * @param {number} opt_from_line The first line (zero bound) in the slice. |
| 412 | * Default is 0 |
| 413 | * @param {number} opt_to_column The last line (zero bound) in the slice (non |
| 414 | * inclusive). Default is the number of lines in the script |
| 415 | * @return {SourceSlice} The source slice or null of the parameters where |
| 416 | * invalid |
| 417 | */ |
| 418 | Script.prototype.sourceSlice = function (opt_from_line, opt_to_line) { |
| 419 | var from_line = IS_UNDEFINED(opt_from_line) ? this.line_offset : opt_from_line; |
| 420 | var to_line = IS_UNDEFINED(opt_to_line) ? this.line_offset + this.lineCount() : opt_to_line |
| 421 | |
| 422 | // Adjust according to the offset within the resource. |
| 423 | from_line -= this.line_offset; |
| 424 | to_line -= this.line_offset; |
| 425 | if (from_line < 0) from_line = 0; |
| 426 | if (to_line > this.lineCount()) to_line = this.lineCount(); |
| 427 | |
| 428 | // Check parameters. |
| 429 | if (from_line >= this.lineCount() || |
| 430 | to_line < 0 || |
| 431 | from_line > to_line) { |
| 432 | return null; |
| 433 | } |
| 434 | |
| Steve Block | d0582a6 | 2009-12-15 09:54:21 +0000 | [diff] [blame] | 435 | var line_ends = this.line_ends; |
| 436 | var from_position = from_line == 0 ? 0 : line_ends[from_line - 1] + 1; |
| 437 | var to_position = to_line == 0 ? 0 : line_ends[to_line - 1] + 1; |
| Steve Block | a7e24c1 | 2009-10-30 11:49:00 +0000 | [diff] [blame] | 438 | |
| 439 | // Return a source slice with line numbers re-adjusted to the resource. |
| 440 | return new SourceSlice(this, from_line + this.line_offset, to_line + this.line_offset, |
| 441 | from_position, to_position); |
| 442 | } |
| 443 | |
| 444 | |
| 445 | Script.prototype.sourceLine = function (opt_line) { |
| 446 | // Default is the first line in the script. Lines in the script are relative |
| 447 | // to the offset within the resource. |
| 448 | var line = 0; |
| 449 | if (!IS_UNDEFINED(opt_line)) { |
| 450 | line = opt_line - this.line_offset; |
| 451 | } |
| 452 | |
| 453 | // Check parameter. |
| 454 | if (line < 0 || this.lineCount() <= line) { |
| 455 | return null; |
| 456 | } |
| 457 | |
| 458 | // Return the source line. |
| Steve Block | d0582a6 | 2009-12-15 09:54:21 +0000 | [diff] [blame] | 459 | var line_ends = this.line_ends; |
| 460 | var start = line == 0 ? 0 : line_ends[line - 1] + 1; |
| 461 | var end = line_ends[line]; |
| Steve Block | 1e0659c | 2011-05-24 12:43:12 +0100 | [diff] [blame] | 462 | return %_CallFunction(this.source, start, end, StringSubstring); |
| Steve Block | a7e24c1 | 2009-10-30 11:49:00 +0000 | [diff] [blame] | 463 | } |
| 464 | |
| 465 | |
| 466 | /** |
| 467 | * Returns the number of source lines. |
| 468 | * @return {number} |
| 469 | * Number of source lines. |
| 470 | */ |
| 471 | Script.prototype.lineCount = function() { |
| 472 | // Return number of source lines. |
| 473 | return this.line_ends.length; |
| 474 | }; |
| 475 | |
| 476 | |
| 477 | /** |
| Steve Block | 6ded16b | 2010-05-10 14:33:55 +0100 | [diff] [blame] | 478 | * Returns the name of script if available, contents of sourceURL comment |
| Ben Murdoch | f87a203 | 2010-10-22 12:50:53 +0100 | [diff] [blame] | 479 | * otherwise. See |
| Steve Block | 6ded16b | 2010-05-10 14:33:55 +0100 | [diff] [blame] | 480 | * http://fbug.googlecode.com/svn/branches/firebug1.1/docs/ReleaseNotes_1.1.txt |
| 481 | * for details on using //@ sourceURL comment to identify scritps that don't |
| 482 | * have name. |
| Ben Murdoch | f87a203 | 2010-10-22 12:50:53 +0100 | [diff] [blame] | 483 | * |
| Steve Block | 6ded16b | 2010-05-10 14:33:55 +0100 | [diff] [blame] | 484 | * @return {?string} script name if present, value for //@ sourceURL comment |
| 485 | * otherwise. |
| 486 | */ |
| 487 | Script.prototype.nameOrSourceURL = function() { |
| 488 | if (this.name) |
| 489 | return this.name; |
| Ben Murdoch | f87a203 | 2010-10-22 12:50:53 +0100 | [diff] [blame] | 490 | // TODO(608): the spaces in a regexp below had to be escaped as \040 |
| Steve Block | 6ded16b | 2010-05-10 14:33:55 +0100 | [diff] [blame] | 491 | // because this file is being processed by js2c whose handling of spaces |
| 492 | // in regexps is broken. Also, ['"] are excluded from allowed URLs to |
| 493 | // avoid matches against sources that invoke evals with sourceURL. |
| 494 | var sourceUrlPattern = |
| 495 | /\/\/@[\040\t]sourceURL=[\040\t]*([^\s'"]*)[\040\t]*$/m; |
| 496 | var match = sourceUrlPattern.exec(this.source); |
| 497 | return match ? match[1] : this.name; |
| 498 | } |
| 499 | |
| 500 | |
| 501 | /** |
| Steve Block | a7e24c1 | 2009-10-30 11:49:00 +0000 | [diff] [blame] | 502 | * Class for source location. A source location is a position within some |
| 503 | * source with the following properties: |
| 504 | * script : script object for the source |
| 505 | * line : source line number |
| 506 | * column : source column within the line |
| 507 | * position : position within the source |
| 508 | * start : position of start of source context (inclusive) |
| 509 | * end : position of end of source context (not inclusive) |
| 510 | * Source text for the source context is the character interval [start, end[. In |
| 511 | * most cases end will point to a newline character. It might point just past |
| 512 | * the final position of the source if the last source line does not end with a |
| 513 | * newline character. |
| 514 | * @param {Script} script The Script object for which this is a location |
| 515 | * @param {number} position Source position for the location |
| 516 | * @param {number} line The line number for the location |
| 517 | * @param {number} column The column within the line for the location |
| 518 | * @param {number} start Source position for start of source context |
| 519 | * @param {number} end Source position for end of source context |
| 520 | * @constructor |
| 521 | */ |
| 522 | function SourceLocation(script, position, line, column, start, end) { |
| 523 | this.script = script; |
| 524 | this.position = position; |
| 525 | this.line = line; |
| 526 | this.column = column; |
| 527 | this.start = start; |
| 528 | this.end = end; |
| 529 | } |
| 530 | |
| 531 | |
| 532 | const kLineLengthLimit = 78; |
| 533 | |
| 534 | /** |
| 535 | * Restrict source location start and end positions to make the source slice |
| 536 | * no more that a certain number of characters wide. |
| 537 | * @param {number} opt_limit The with limit of the source text with a default |
| 538 | * of 78 |
| 539 | * @param {number} opt_before The number of characters to prefer before the |
| 540 | * position with a default value of 10 less that the limit |
| 541 | */ |
| 542 | SourceLocation.prototype.restrict = function (opt_limit, opt_before) { |
| 543 | // Find the actual limit to use. |
| 544 | var limit; |
| 545 | var before; |
| 546 | if (!IS_UNDEFINED(opt_limit)) { |
| 547 | limit = opt_limit; |
| 548 | } else { |
| 549 | limit = kLineLengthLimit; |
| 550 | } |
| 551 | if (!IS_UNDEFINED(opt_before)) { |
| 552 | before = opt_before; |
| 553 | } else { |
| 554 | // If no before is specified center for small limits and perfer more source |
| 555 | // before the the position that after for longer limits. |
| 556 | if (limit <= 20) { |
| 557 | before = $floor(limit / 2); |
| 558 | } else { |
| 559 | before = limit - 10; |
| 560 | } |
| 561 | } |
| 562 | if (before >= limit) { |
| 563 | before = limit - 1; |
| 564 | } |
| 565 | |
| 566 | // If the [start, end[ interval is too big we restrict |
| 567 | // it in one or both ends. We make sure to always produce |
| 568 | // restricted intervals of maximum allowed size. |
| 569 | if (this.end - this.start > limit) { |
| 570 | var start_limit = this.position - before; |
| 571 | var end_limit = this.position + limit - before; |
| 572 | if (this.start < start_limit && end_limit < this.end) { |
| 573 | this.start = start_limit; |
| 574 | this.end = end_limit; |
| 575 | } else if (this.start < start_limit) { |
| 576 | this.start = this.end - limit; |
| 577 | } else { |
| 578 | this.end = this.start + limit; |
| 579 | } |
| 580 | } |
| 581 | }; |
| 582 | |
| 583 | |
| 584 | /** |
| 585 | * Get the source text for a SourceLocation |
| 586 | * @return {String} |
| 587 | * Source text for this location. |
| 588 | */ |
| 589 | SourceLocation.prototype.sourceText = function () { |
| Steve Block | 1e0659c | 2011-05-24 12:43:12 +0100 | [diff] [blame] | 590 | return %_CallFunction(this.script.source, this.start, this.end, StringSubstring); |
| Steve Block | a7e24c1 | 2009-10-30 11:49:00 +0000 | [diff] [blame] | 591 | }; |
| 592 | |
| 593 | |
| 594 | /** |
| 595 | * Class for a source slice. A source slice is a part of a script source with |
| 596 | * the following properties: |
| 597 | * script : script object for the source |
| 598 | * from_line : line number for the first line in the slice |
| 599 | * to_line : source line number for the last line in the slice |
| 600 | * from_position : position of the first character in the slice |
| 601 | * to_position : position of the last character in the slice |
| 602 | * The to_line and to_position are not included in the slice, that is the lines |
| 603 | * in the slice are [from_line, to_line[. Likewise the characters in the slice |
| 604 | * are [from_position, to_position[. |
| 605 | * @param {Script} script The Script object for the source slice |
| 606 | * @param {number} from_line |
| 607 | * @param {number} to_line |
| 608 | * @param {number} from_position |
| 609 | * @param {number} to_position |
| 610 | * @constructor |
| 611 | */ |
| 612 | function SourceSlice(script, from_line, to_line, from_position, to_position) { |
| 613 | this.script = script; |
| 614 | this.from_line = from_line; |
| 615 | this.to_line = to_line; |
| 616 | this.from_position = from_position; |
| 617 | this.to_position = to_position; |
| 618 | } |
| 619 | |
| 620 | |
| 621 | /** |
| 622 | * Get the source text for a SourceSlice |
| 623 | * @return {String} Source text for this slice. The last line will include |
| 624 | * the line terminating characters (if any) |
| 625 | */ |
| 626 | SourceSlice.prototype.sourceText = function () { |
| Steve Block | 1e0659c | 2011-05-24 12:43:12 +0100 | [diff] [blame] | 627 | return %_CallFunction(this.script.source, |
| 628 | this.from_position, |
| 629 | this.to_position, |
| 630 | StringSubstring); |
| Steve Block | a7e24c1 | 2009-10-30 11:49:00 +0000 | [diff] [blame] | 631 | }; |
| 632 | |
| 633 | |
| 634 | // Returns the offset of the given position within the containing |
| 635 | // line. |
| 636 | function GetPositionInLine(message) { |
| Steve Block | 1e0659c | 2011-05-24 12:43:12 +0100 | [diff] [blame] | 637 | var script = %MessageGetScript(message); |
| 638 | var start_position = %MessageGetStartPosition(message); |
| 639 | var location = script.locationFromPosition(start_position, false); |
| Steve Block | a7e24c1 | 2009-10-30 11:49:00 +0000 | [diff] [blame] | 640 | if (location == null) return -1; |
| 641 | location.restrict(); |
| Steve Block | 1e0659c | 2011-05-24 12:43:12 +0100 | [diff] [blame] | 642 | return start_position - location.start; |
| Steve Block | a7e24c1 | 2009-10-30 11:49:00 +0000 | [diff] [blame] | 643 | } |
| 644 | |
| 645 | |
| 646 | function GetStackTraceLine(recv, fun, pos, isGlobal) { |
| 647 | return FormatSourcePosition(new CallSite(recv, fun, pos)); |
| 648 | } |
| 649 | |
| 650 | // ---------------------------------------------------------------------------- |
| 651 | // Error implementation |
| 652 | |
| 653 | // Defines accessors for a property that is calculated the first time |
| 654 | // the property is read. |
| 655 | function DefineOneShotAccessor(obj, name, fun) { |
| 656 | // Note that the accessors consistently operate on 'obj', not 'this'. |
| 657 | // Since the object may occur in someone else's prototype chain we |
| 658 | // can't rely on 'this' being the same as 'obj'. |
| 659 | var hasBeenSet = false; |
| 660 | var value; |
| 661 | obj.__defineGetter__(name, function () { |
| 662 | if (hasBeenSet) { |
| 663 | return value; |
| 664 | } |
| 665 | hasBeenSet = true; |
| 666 | value = fun(obj); |
| 667 | return value; |
| 668 | }); |
| 669 | obj.__defineSetter__(name, function (v) { |
| 670 | hasBeenSet = true; |
| 671 | value = v; |
| 672 | }); |
| 673 | } |
| 674 | |
| 675 | function CallSite(receiver, fun, pos) { |
| 676 | this.receiver = receiver; |
| 677 | this.fun = fun; |
| 678 | this.pos = pos; |
| 679 | } |
| 680 | |
| 681 | CallSite.prototype.getThis = function () { |
| 682 | return this.receiver; |
| 683 | }; |
| 684 | |
| 685 | CallSite.prototype.getTypeName = function () { |
| 686 | var constructor = this.receiver.constructor; |
| 687 | if (!constructor) |
| Steve Block | 1e0659c | 2011-05-24 12:43:12 +0100 | [diff] [blame] | 688 | return %_CallFunction(this.receiver, ObjectToString); |
| Steve Block | a7e24c1 | 2009-10-30 11:49:00 +0000 | [diff] [blame] | 689 | var constructorName = constructor.name; |
| 690 | if (!constructorName) |
| Steve Block | 1e0659c | 2011-05-24 12:43:12 +0100 | [diff] [blame] | 691 | return %_CallFunction(this.receiver, ObjectToString); |
| Steve Block | a7e24c1 | 2009-10-30 11:49:00 +0000 | [diff] [blame] | 692 | return constructorName; |
| 693 | }; |
| 694 | |
| 695 | CallSite.prototype.isToplevel = function () { |
| 696 | if (this.receiver == null) |
| 697 | return true; |
| 698 | return IS_GLOBAL(this.receiver); |
| 699 | }; |
| 700 | |
| 701 | CallSite.prototype.isEval = function () { |
| 702 | var script = %FunctionGetScript(this.fun); |
| Andrei Popescu | 3100271 | 2010-02-23 13:46:05 +0000 | [diff] [blame] | 703 | return script && script.compilation_type == COMPILATION_TYPE_EVAL; |
| Steve Block | a7e24c1 | 2009-10-30 11:49:00 +0000 | [diff] [blame] | 704 | }; |
| 705 | |
| 706 | CallSite.prototype.getEvalOrigin = function () { |
| 707 | var script = %FunctionGetScript(this.fun); |
| Steve Block | d0582a6 | 2009-12-15 09:54:21 +0000 | [diff] [blame] | 708 | return FormatEvalOrigin(script); |
| Steve Block | a7e24c1 | 2009-10-30 11:49:00 +0000 | [diff] [blame] | 709 | }; |
| 710 | |
| Kristian Monsen | 0d5e116 | 2010-09-30 15:31:59 +0100 | [diff] [blame] | 711 | CallSite.prototype.getScriptNameOrSourceURL = function () { |
| 712 | var script = %FunctionGetScript(this.fun); |
| 713 | return script ? script.nameOrSourceURL() : null; |
| 714 | }; |
| 715 | |
| Steve Block | a7e24c1 | 2009-10-30 11:49:00 +0000 | [diff] [blame] | 716 | CallSite.prototype.getFunction = function () { |
| 717 | return this.fun; |
| 718 | }; |
| 719 | |
| 720 | CallSite.prototype.getFunctionName = function () { |
| 721 | // See if the function knows its own name |
| 722 | var name = this.fun.name; |
| 723 | if (name) { |
| 724 | return name; |
| 725 | } else { |
| 726 | return %FunctionGetInferredName(this.fun); |
| 727 | } |
| 728 | // Maybe this is an evaluation? |
| 729 | var script = %FunctionGetScript(this.fun); |
| Andrei Popescu | 3100271 | 2010-02-23 13:46:05 +0000 | [diff] [blame] | 730 | if (script && script.compilation_type == COMPILATION_TYPE_EVAL) |
| Steve Block | a7e24c1 | 2009-10-30 11:49:00 +0000 | [diff] [blame] | 731 | return "eval"; |
| 732 | return null; |
| 733 | }; |
| 734 | |
| 735 | CallSite.prototype.getMethodName = function () { |
| 736 | // See if we can find a unique property on the receiver that holds |
| 737 | // this function. |
| 738 | var ownName = this.fun.name; |
| Iain Merrick | 7568138 | 2010-08-19 15:07:18 +0100 | [diff] [blame] | 739 | if (ownName && this.receiver && |
| Steve Block | 1e0659c | 2011-05-24 12:43:12 +0100 | [diff] [blame] | 740 | (%_CallFunction(this.receiver, ownName, ObjectLookupGetter) === this.fun || |
| 741 | %_CallFunction(this.receiver, ownName, ObjectLookupSetter) === this.fun || |
| Iain Merrick | 7568138 | 2010-08-19 15:07:18 +0100 | [diff] [blame] | 742 | this.receiver[ownName] === this.fun)) { |
| Steve Block | a7e24c1 | 2009-10-30 11:49:00 +0000 | [diff] [blame] | 743 | // To handle DontEnum properties we guess that the method has |
| 744 | // the same name as the function. |
| 745 | return ownName; |
| Iain Merrick | 7568138 | 2010-08-19 15:07:18 +0100 | [diff] [blame] | 746 | } |
| Steve Block | a7e24c1 | 2009-10-30 11:49:00 +0000 | [diff] [blame] | 747 | var name = null; |
| 748 | for (var prop in this.receiver) { |
| Iain Merrick | 7568138 | 2010-08-19 15:07:18 +0100 | [diff] [blame] | 749 | if (this.receiver.__lookupGetter__(prop) === this.fun || |
| 750 | this.receiver.__lookupSetter__(prop) === this.fun || |
| 751 | (!this.receiver.__lookupGetter__(prop) && this.receiver[prop] === this.fun)) { |
| 752 | // If we find more than one match bail out to avoid confusion. |
| Steve Block | a7e24c1 | 2009-10-30 11:49:00 +0000 | [diff] [blame] | 753 | if (name) |
| 754 | return null; |
| 755 | name = prop; |
| 756 | } |
| 757 | } |
| 758 | if (name) |
| 759 | return name; |
| 760 | return null; |
| 761 | }; |
| 762 | |
| 763 | CallSite.prototype.getFileName = function () { |
| 764 | var script = %FunctionGetScript(this.fun); |
| 765 | return script ? script.name : null; |
| 766 | }; |
| 767 | |
| 768 | CallSite.prototype.getLineNumber = function () { |
| 769 | if (this.pos == -1) |
| 770 | return null; |
| 771 | var script = %FunctionGetScript(this.fun); |
| 772 | var location = null; |
| 773 | if (script) { |
| 774 | location = script.locationFromPosition(this.pos, true); |
| 775 | } |
| 776 | return location ? location.line + 1 : null; |
| 777 | }; |
| 778 | |
| 779 | CallSite.prototype.getColumnNumber = function () { |
| 780 | if (this.pos == -1) |
| 781 | return null; |
| 782 | var script = %FunctionGetScript(this.fun); |
| 783 | var location = null; |
| 784 | if (script) { |
| 785 | location = script.locationFromPosition(this.pos, true); |
| 786 | } |
| Steve Block | d0582a6 | 2009-12-15 09:54:21 +0000 | [diff] [blame] | 787 | return location ? location.column + 1: null; |
| Steve Block | a7e24c1 | 2009-10-30 11:49:00 +0000 | [diff] [blame] | 788 | }; |
| 789 | |
| 790 | CallSite.prototype.isNative = function () { |
| 791 | var script = %FunctionGetScript(this.fun); |
| Andrei Popescu | 3100271 | 2010-02-23 13:46:05 +0000 | [diff] [blame] | 792 | return script ? (script.type == TYPE_NATIVE) : false; |
| Steve Block | a7e24c1 | 2009-10-30 11:49:00 +0000 | [diff] [blame] | 793 | }; |
| 794 | |
| 795 | CallSite.prototype.getPosition = function () { |
| 796 | return this.pos; |
| 797 | }; |
| 798 | |
| 799 | CallSite.prototype.isConstructor = function () { |
| 800 | var constructor = this.receiver ? this.receiver.constructor : null; |
| 801 | if (!constructor) |
| 802 | return false; |
| 803 | return this.fun === constructor; |
| 804 | }; |
| 805 | |
| Steve Block | d0582a6 | 2009-12-15 09:54:21 +0000 | [diff] [blame] | 806 | function FormatEvalOrigin(script) { |
| Kristian Monsen | 0d5e116 | 2010-09-30 15:31:59 +0100 | [diff] [blame] | 807 | var sourceURL = script.nameOrSourceURL(); |
| 808 | if (sourceURL) |
| 809 | return sourceURL; |
| 810 | |
| 811 | var eval_origin = "eval at "; |
| Steve Block | d0582a6 | 2009-12-15 09:54:21 +0000 | [diff] [blame] | 812 | if (script.eval_from_function_name) { |
| 813 | eval_origin += script.eval_from_function_name; |
| 814 | } else { |
| 815 | eval_origin += "<anonymous>"; |
| 816 | } |
| Steve Block | 6ded16b | 2010-05-10 14:33:55 +0100 | [diff] [blame] | 817 | |
| Steve Block | d0582a6 | 2009-12-15 09:54:21 +0000 | [diff] [blame] | 818 | var eval_from_script = script.eval_from_script; |
| 819 | if (eval_from_script) { |
| Andrei Popescu | 3100271 | 2010-02-23 13:46:05 +0000 | [diff] [blame] | 820 | if (eval_from_script.compilation_type == COMPILATION_TYPE_EVAL) { |
| Steve Block | d0582a6 | 2009-12-15 09:54:21 +0000 | [diff] [blame] | 821 | // eval script originated from another eval. |
| Kristian Monsen | 0d5e116 | 2010-09-30 15:31:59 +0100 | [diff] [blame] | 822 | eval_origin += " (" + FormatEvalOrigin(eval_from_script) + ")"; |
| Steve Block | d0582a6 | 2009-12-15 09:54:21 +0000 | [diff] [blame] | 823 | } else { |
| Kristian Monsen | 0d5e116 | 2010-09-30 15:31:59 +0100 | [diff] [blame] | 824 | // eval script originated from "real" source. |
| Steve Block | d0582a6 | 2009-12-15 09:54:21 +0000 | [diff] [blame] | 825 | if (eval_from_script.name) { |
| 826 | eval_origin += " (" + eval_from_script.name; |
| 827 | var location = eval_from_script.locationFromPosition(script.eval_from_script_position, true); |
| 828 | if (location) { |
| 829 | eval_origin += ":" + (location.line + 1); |
| 830 | eval_origin += ":" + (location.column + 1); |
| 831 | } |
| 832 | eval_origin += ")" |
| 833 | } else { |
| 834 | eval_origin += " (unknown source)"; |
| 835 | } |
| 836 | } |
| 837 | } |
| Steve Block | 6ded16b | 2010-05-10 14:33:55 +0100 | [diff] [blame] | 838 | |
| Steve Block | d0582a6 | 2009-12-15 09:54:21 +0000 | [diff] [blame] | 839 | return eval_origin; |
| 840 | }; |
| 841 | |
| Steve Block | a7e24c1 | 2009-10-30 11:49:00 +0000 | [diff] [blame] | 842 | function FormatSourcePosition(frame) { |
| Kristian Monsen | 0d5e116 | 2010-09-30 15:31:59 +0100 | [diff] [blame] | 843 | var fileName; |
| Steve Block | a7e24c1 | 2009-10-30 11:49:00 +0000 | [diff] [blame] | 844 | var fileLocation = ""; |
| 845 | if (frame.isNative()) { |
| 846 | fileLocation = "native"; |
| 847 | } else if (frame.isEval()) { |
| Kristian Monsen | 0d5e116 | 2010-09-30 15:31:59 +0100 | [diff] [blame] | 848 | fileName = frame.getScriptNameOrSourceURL(); |
| 849 | if (!fileName) |
| 850 | fileLocation = frame.getEvalOrigin(); |
| Steve Block | a7e24c1 | 2009-10-30 11:49:00 +0000 | [diff] [blame] | 851 | } else { |
| Kristian Monsen | 0d5e116 | 2010-09-30 15:31:59 +0100 | [diff] [blame] | 852 | fileName = frame.getFileName(); |
| 853 | } |
| 854 | |
| 855 | if (fileName) { |
| 856 | fileLocation += fileName; |
| 857 | var lineNumber = frame.getLineNumber(); |
| 858 | if (lineNumber != null) { |
| 859 | fileLocation += ":" + lineNumber; |
| 860 | var columnNumber = frame.getColumnNumber(); |
| 861 | if (columnNumber) { |
| 862 | fileLocation += ":" + columnNumber; |
| Steve Block | a7e24c1 | 2009-10-30 11:49:00 +0000 | [diff] [blame] | 863 | } |
| 864 | } |
| 865 | } |
| Kristian Monsen | 0d5e116 | 2010-09-30 15:31:59 +0100 | [diff] [blame] | 866 | |
| Steve Block | a7e24c1 | 2009-10-30 11:49:00 +0000 | [diff] [blame] | 867 | if (!fileLocation) { |
| 868 | fileLocation = "unknown source"; |
| 869 | } |
| 870 | var line = ""; |
| 871 | var functionName = frame.getFunction().name; |
| Steve Block | a7e24c1 | 2009-10-30 11:49:00 +0000 | [diff] [blame] | 872 | var addPrefix = true; |
| 873 | var isConstructor = frame.isConstructor(); |
| 874 | var isMethodCall = !(frame.isToplevel() || isConstructor); |
| 875 | if (isMethodCall) { |
| Iain Merrick | 9ac36c9 | 2010-09-13 15:29:50 +0100 | [diff] [blame] | 876 | var methodName = frame.getMethodName(); |
| Steve Block | a7e24c1 | 2009-10-30 11:49:00 +0000 | [diff] [blame] | 877 | line += frame.getTypeName() + "."; |
| 878 | if (functionName) { |
| 879 | line += functionName; |
| 880 | if (methodName && (methodName != functionName)) { |
| 881 | line += " [as " + methodName + "]"; |
| 882 | } |
| 883 | } else { |
| 884 | line += methodName || "<anonymous>"; |
| 885 | } |
| 886 | } else if (isConstructor) { |
| 887 | line += "new " + (functionName || "<anonymous>"); |
| 888 | } else if (functionName) { |
| 889 | line += functionName; |
| 890 | } else { |
| 891 | line += fileLocation; |
| 892 | addPrefix = false; |
| 893 | } |
| 894 | if (addPrefix) { |
| 895 | line += " (" + fileLocation + ")"; |
| 896 | } |
| 897 | return line; |
| 898 | } |
| 899 | |
| 900 | function FormatStackTrace(error, frames) { |
| 901 | var lines = []; |
| 902 | try { |
| 903 | lines.push(error.toString()); |
| 904 | } catch (e) { |
| 905 | try { |
| 906 | lines.push("<error: " + e + ">"); |
| 907 | } catch (ee) { |
| 908 | lines.push("<error>"); |
| 909 | } |
| 910 | } |
| 911 | for (var i = 0; i < frames.length; i++) { |
| 912 | var frame = frames[i]; |
| 913 | var line; |
| 914 | try { |
| 915 | line = FormatSourcePosition(frame); |
| 916 | } catch (e) { |
| 917 | try { |
| 918 | line = "<error: " + e + ">"; |
| 919 | } catch (ee) { |
| 920 | // Any code that reaches this point is seriously nasty! |
| 921 | line = "<error>"; |
| 922 | } |
| 923 | } |
| 924 | lines.push(" at " + line); |
| 925 | } |
| 926 | return lines.join("\n"); |
| 927 | } |
| 928 | |
| 929 | function FormatRawStackTrace(error, raw_stack) { |
| 930 | var frames = [ ]; |
| Ben Murdoch | b0fe162 | 2011-05-05 13:52:32 +0100 | [diff] [blame] | 931 | for (var i = 0; i < raw_stack.length; i += 4) { |
| Steve Block | a7e24c1 | 2009-10-30 11:49:00 +0000 | [diff] [blame] | 932 | var recv = raw_stack[i]; |
| Ben Murdoch | b0fe162 | 2011-05-05 13:52:32 +0100 | [diff] [blame] | 933 | var fun = raw_stack[i + 1]; |
| 934 | var code = raw_stack[i + 2]; |
| 935 | var pc = raw_stack[i + 3]; |
| 936 | var pos = %FunctionGetPositionForOffset(code, pc); |
| Steve Block | a7e24c1 | 2009-10-30 11:49:00 +0000 | [diff] [blame] | 937 | frames.push(new CallSite(recv, fun, pos)); |
| 938 | } |
| 939 | if (IS_FUNCTION($Error.prepareStackTrace)) { |
| 940 | return $Error.prepareStackTrace(error, frames); |
| 941 | } else { |
| 942 | return FormatStackTrace(error, frames); |
| 943 | } |
| 944 | } |
| 945 | |
| 946 | function DefineError(f) { |
| 947 | // Store the error function in both the global object |
| 948 | // and the runtime object. The function is fetched |
| 949 | // from the runtime object when throwing errors from |
| 950 | // within the runtime system to avoid strange side |
| 951 | // effects when overwriting the error functions from |
| 952 | // user code. |
| 953 | var name = f.name; |
| 954 | %SetProperty(global, name, f, DONT_ENUM); |
| 955 | this['$' + name] = f; |
| 956 | // Configure the error function. |
| 957 | if (name == 'Error') { |
| 958 | // The prototype of the Error object must itself be an error. |
| 959 | // However, it can't be an instance of the Error object because |
| 960 | // it hasn't been properly configured yet. Instead we create a |
| 961 | // special not-a-true-error-but-close-enough object. |
| 962 | function ErrorPrototype() {} |
| 963 | %FunctionSetPrototype(ErrorPrototype, $Object.prototype); |
| 964 | %FunctionSetInstanceClassName(ErrorPrototype, 'Error'); |
| 965 | %FunctionSetPrototype(f, new ErrorPrototype()); |
| 966 | } else { |
| 967 | %FunctionSetPrototype(f, new $Error()); |
| 968 | } |
| 969 | %FunctionSetInstanceClassName(f, 'Error'); |
| 970 | %SetProperty(f.prototype, 'constructor', f, DONT_ENUM); |
| Ben Murdoch | b8e0da2 | 2011-05-16 14:20:40 +0100 | [diff] [blame] | 971 | // The name property on the prototype of error objects is not |
| 972 | // specified as being read-one and dont-delete. However, allowing |
| 973 | // overwriting allows leaks of error objects between script blocks |
| 974 | // in the same context in a browser setting. Therefore we fix the |
| 975 | // name. |
| 976 | %SetProperty(f.prototype, "name", name, READ_ONLY | DONT_DELETE); |
| Steve Block | a7e24c1 | 2009-10-30 11:49:00 +0000 | [diff] [blame] | 977 | %SetCode(f, function(m) { |
| 978 | if (%_IsConstructCall()) { |
| Ben Murdoch | b8e0da2 | 2011-05-16 14:20:40 +0100 | [diff] [blame] | 979 | // Define all the expected properties directly on the error |
| 980 | // object. This avoids going through getters and setters defined |
| 981 | // on prototype objects. |
| 982 | %IgnoreAttributesAndSetProperty(this, 'stack', void 0); |
| 983 | %IgnoreAttributesAndSetProperty(this, 'arguments', void 0); |
| 984 | %IgnoreAttributesAndSetProperty(this, 'type', void 0); |
| Steve Block | a7e24c1 | 2009-10-30 11:49:00 +0000 | [diff] [blame] | 985 | if (m === kAddMessageAccessorsMarker) { |
| Ben Murdoch | b8e0da2 | 2011-05-16 14:20:40 +0100 | [diff] [blame] | 986 | // DefineOneShotAccessor always inserts a message property and |
| 987 | // ignores setters. |
| Steve Block | a7e24c1 | 2009-10-30 11:49:00 +0000 | [diff] [blame] | 988 | DefineOneShotAccessor(this, 'message', function (obj) { |
| Steve Block | 1e0659c | 2011-05-24 12:43:12 +0100 | [diff] [blame] | 989 | return FormatMessage(%NewMessageObject(obj.type, obj.arguments)); |
| Steve Block | a7e24c1 | 2009-10-30 11:49:00 +0000 | [diff] [blame] | 990 | }); |
| 991 | } else if (!IS_UNDEFINED(m)) { |
| Ben Murdoch | b8e0da2 | 2011-05-16 14:20:40 +0100 | [diff] [blame] | 992 | %IgnoreAttributesAndSetProperty(this, 'message', ToString(m)); |
| Steve Block | a7e24c1 | 2009-10-30 11:49:00 +0000 | [diff] [blame] | 993 | } |
| 994 | captureStackTrace(this, f); |
| 995 | } else { |
| 996 | return new f(m); |
| 997 | } |
| 998 | }); |
| 999 | } |
| 1000 | |
| 1001 | function captureStackTrace(obj, cons_opt) { |
| 1002 | var stackTraceLimit = $Error.stackTraceLimit; |
| Steve Block | 1e0659c | 2011-05-24 12:43:12 +0100 | [diff] [blame] | 1003 | if (!stackTraceLimit || !IS_NUMBER(stackTraceLimit)) return; |
| Steve Block | a7e24c1 | 2009-10-30 11:49:00 +0000 | [diff] [blame] | 1004 | if (stackTraceLimit < 0 || stackTraceLimit > 10000) |
| 1005 | stackTraceLimit = 10000; |
| Steve Block | 1e0659c | 2011-05-24 12:43:12 +0100 | [diff] [blame] | 1006 | var raw_stack = %CollectStackTrace(cons_opt |
| 1007 | ? cons_opt |
| 1008 | : captureStackTrace, stackTraceLimit); |
| Steve Block | a7e24c1 | 2009-10-30 11:49:00 +0000 | [diff] [blame] | 1009 | DefineOneShotAccessor(obj, 'stack', function (obj) { |
| 1010 | return FormatRawStackTrace(obj, raw_stack); |
| 1011 | }); |
| 1012 | }; |
| 1013 | |
| 1014 | $Math.__proto__ = global.Object.prototype; |
| 1015 | |
| 1016 | DefineError(function Error() { }); |
| 1017 | DefineError(function TypeError() { }); |
| 1018 | DefineError(function RangeError() { }); |
| 1019 | DefineError(function SyntaxError() { }); |
| 1020 | DefineError(function ReferenceError() { }); |
| 1021 | DefineError(function EvalError() { }); |
| 1022 | DefineError(function URIError() { }); |
| 1023 | |
| 1024 | $Error.captureStackTrace = captureStackTrace; |
| 1025 | |
| 1026 | // Setup extra properties of the Error.prototype object. |
| 1027 | $Error.prototype.message = ''; |
| 1028 | |
| Steve Block | 1e0659c | 2011-05-24 12:43:12 +0100 | [diff] [blame] | 1029 | // Global list of error objects visited during errorToString. This is |
| 1030 | // used to detect cycles in error toString formatting. |
| 1031 | var visited_errors = new $Array(); |
| 1032 | var cyclic_error_marker = new $Object(); |
| 1033 | |
| 1034 | function errorToStringDetectCycle() { |
| 1035 | if (!%PushIfAbsent(visited_errors, this)) throw cyclic_error_marker; |
| 1036 | try { |
| 1037 | var type = this.type; |
| 1038 | if (type && !%_CallFunction(this, "message", ObjectHasOwnProperty)) { |
| 1039 | var formatted = FormatMessage(%NewMessageObject(type, this.arguments)); |
| 1040 | return this.name + ": " + formatted; |
| 1041 | } |
| 1042 | var message = %_CallFunction(this, "message", ObjectHasOwnProperty) |
| 1043 | ? (": " + this.message) |
| 1044 | : ""; |
| 1045 | return this.name + message; |
| 1046 | } finally { |
| 1047 | visited_errors.length = visited_errors.length - 1; |
| Steve Block | a7e24c1 | 2009-10-30 11:49:00 +0000 | [diff] [blame] | 1048 | } |
| Steve Block | 1e0659c | 2011-05-24 12:43:12 +0100 | [diff] [blame] | 1049 | } |
| 1050 | |
| 1051 | function errorToString() { |
| 1052 | // This helper function is needed because access to properties on |
| 1053 | // the builtins object do not work inside of a catch clause. |
| 1054 | function isCyclicErrorMarker(o) { return o === cyclic_error_marker; } |
| 1055 | |
| 1056 | try { |
| 1057 | return %_CallFunction(this, errorToStringDetectCycle); |
| 1058 | } catch(e) { |
| 1059 | // If this error message was encountered already return the empty |
| 1060 | // string for it instead of recursively formatting it. |
| 1061 | if (isCyclicErrorMarker(e)) return ''; |
| 1062 | else throw e; |
| 1063 | } |
| Ben Murdoch | b8e0da2 | 2011-05-16 14:20:40 +0100 | [diff] [blame] | 1064 | } |
| 1065 | |
| Ben Murdoch | e0cee9b | 2011-05-25 10:26:03 +0100 | [diff] [blame] | 1066 | |
| 1067 | InstallFunctions($Error.prototype, DONT_ENUM, ['toString', errorToString]); |
| Steve Block | a7e24c1 | 2009-10-30 11:49:00 +0000 | [diff] [blame] | 1068 | |
| Steve Block | a7e24c1 | 2009-10-30 11:49:00 +0000 | [diff] [blame] | 1069 | // Boilerplate for exceptions for stack overflows. Used from |
| 1070 | // Top::StackOverflow(). |
| 1071 | const kStackOverflowBoilerplate = MakeRangeError('stack_overflow', []); |