OLD | NEW |
1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 the V8 project authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 // ------------------------------------------------------------------- | 5 // ------------------------------------------------------------------- |
6 | 6 |
7 var kMessages = { | 7 var kMessages = { |
8 // Error | 8 // Error |
9 cyclic_proto: ["Cyclic __proto__ value"], | 9 cyclic_proto: ["Cyclic __proto__ value"], |
10 code_gen_from_strings: ["%0"], | 10 code_gen_from_strings: ["%0"], |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
43 not_defined: ["%0", " is not defined"], | 43 not_defined: ["%0", " is not defined"], |
44 non_method: ["'super' is referenced from non-method"], | 44 non_method: ["'super' is referenced from non-method"], |
45 unsupported_super: ["Unsupported reference to 'super'"], | 45 unsupported_super: ["Unsupported reference to 'super'"], |
46 non_object_property_load: ["Cannot read property '", "%0", "' of ", "%1"]
, | 46 non_object_property_load: ["Cannot read property '", "%0", "' of ", "%1"]
, |
47 non_object_property_store: ["Cannot set property '", "%0", "' of ", "%1"], | 47 non_object_property_store: ["Cannot set property '", "%0", "' of ", "%1"], |
48 with_expression: ["%0", " has no properties"], | 48 with_expression: ["%0", " has no properties"], |
49 illegal_invocation: ["Illegal invocation"], | 49 illegal_invocation: ["Illegal invocation"], |
50 no_setter_in_callback: ["Cannot set property ", "%0", " of ", "%1", "
which has only a getter"], | 50 no_setter_in_callback: ["Cannot set property ", "%0", " of ", "%1", "
which has only a getter"], |
51 apply_non_function: ["Function.prototype.apply was called on ", "%0
", ", which is a ", "%1", " and not a function"], | 51 apply_non_function: ["Function.prototype.apply was called on ", "%0
", ", which is a ", "%1", " and not a function"], |
52 apply_wrong_args: ["Function.prototype.apply: Arguments list has
wrong type"], | 52 apply_wrong_args: ["Function.prototype.apply: Arguments list has
wrong type"], |
| 53 reflect_apply_wrong_args: ["Reflect.apply: Arguments list has wrong type"
], |
| 54 reflect_construct_wrong_args: ["Reflect.construct: Arguments list has wrong t
ype"], |
53 flags_getter_non_object: ["RegExp.prototype.flags getter called on non-o
bject ", "%0"], | 55 flags_getter_non_object: ["RegExp.prototype.flags getter called on non-o
bject ", "%0"], |
54 invalid_in_operator_use: ["Cannot use 'in' operator to search for '", "%
0", "' in ", "%1"], | 56 invalid_in_operator_use: ["Cannot use 'in' operator to search for '", "%
0", "' in ", "%1"], |
55 instanceof_function_expected: ["Expecting a function in instanceof check, but
got ", "%0"], | 57 instanceof_function_expected: ["Expecting a function in instanceof check, but
got ", "%0"], |
56 instanceof_nonobject_proto: ["Function has non-object prototype '", "%0", "
' in instanceof check"], | 58 instanceof_nonobject_proto: ["Function has non-object prototype '", "%0", "
' in instanceof check"], |
57 undefined_or_null_to_object: ["Cannot convert undefined or null to object"], | 59 undefined_or_null_to_object: ["Cannot convert undefined or null to object"], |
58 reduce_no_initial: ["Reduce of empty array with no initial value"]
, | 60 reduce_no_initial: ["Reduce of empty array with no initial value"]
, |
59 getter_must_be_callable: ["Getter must be a function: ", "%0"], | 61 getter_must_be_callable: ["Getter must be a function: ", "%0"], |
60 setter_must_be_callable: ["Setter must be a function: ", "%0"], | 62 setter_must_be_callable: ["Setter must be a function: ", "%0"], |
61 value_and_accessor: ["Invalid property. A property cannot both hav
e accessors and be writable or have a value, ", "%0"], | 63 value_and_accessor: ["Invalid property. A property cannot both hav
e accessors and be writable or have a value, ", "%0"], |
62 proto_object_or_null: ["Object prototype may only be an Object or nul
l: ", "%0"], | 64 proto_object_or_null: ["Object prototype may only be an Object or nul
l: ", "%0"], |
(...skipping 1259 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1322 function SetUpStackOverflowBoilerplate() { | 1324 function SetUpStackOverflowBoilerplate() { |
1323 var boilerplate = MakeRangeError('stack_overflow', []); | 1325 var boilerplate = MakeRangeError('stack_overflow', []); |
1324 | 1326 |
1325 %DefineAccessorPropertyUnchecked( | 1327 %DefineAccessorPropertyUnchecked( |
1326 boilerplate, 'stack', StackTraceGetter, StackTraceSetter, DONT_ENUM); | 1328 boilerplate, 'stack', StackTraceGetter, StackTraceSetter, DONT_ENUM); |
1327 | 1329 |
1328 return boilerplate; | 1330 return boilerplate; |
1329 } | 1331 } |
1330 | 1332 |
1331 var kStackOverflowBoilerplate = SetUpStackOverflowBoilerplate(); | 1333 var kStackOverflowBoilerplate = SetUpStackOverflowBoilerplate(); |
OLD | NEW |