| 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 147 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 158 strict_delete: ["Delete of an unqualified identifier in strict
mode."], | 158 strict_delete: ["Delete of an unqualified identifier in strict
mode."], |
| 159 strict_delete_property: ["Cannot delete property '", "%0", "' of ", "%1
"], | 159 strict_delete_property: ["Cannot delete property '", "%0", "' of ", "%1
"], |
| 160 strict_const: ["Use of const in strict mode."], | 160 strict_const: ["Use of const in strict mode."], |
| 161 strict_function: ["In strict mode code, functions can only be de
clared at top level or immediately within another function." ], | 161 strict_function: ["In strict mode code, functions can only be de
clared at top level or immediately within another function." ], |
| 162 strict_read_only_property: ["Cannot assign to read only property '", "%0",
"' of ", "%1"], | 162 strict_read_only_property: ["Cannot assign to read only property '", "%0",
"' of ", "%1"], |
| 163 strict_cannot_assign: ["Cannot assign to read only '", "%0", "' in st
rict mode"], | 163 strict_cannot_assign: ["Cannot assign to read only '", "%0", "' in st
rict mode"], |
| 164 strict_poison_pill: ["'caller', 'callee', and 'arguments' propertie
s may not be accessed on strict mode functions or the arguments objects for call
s to them"], | 164 strict_poison_pill: ["'caller', 'callee', and 'arguments' propertie
s may not be accessed on strict mode functions or the arguments objects for call
s to them"], |
| 165 strict_caller: ["Illegal access to a strict mode caller functi
on."], | 165 strict_caller: ["Illegal access to a strict mode caller functi
on."], |
| 166 malformed_arrow_function_parameter_list: ["Malformed arrow function parameter
list"], | 166 malformed_arrow_function_parameter_list: ["Malformed arrow function parameter
list"], |
| 167 generator_poison_pill: ["'caller' and 'arguments' properties may not b
e accessed on generator functions."], | 167 generator_poison_pill: ["'caller' and 'arguments' properties may not b
e accessed on generator functions."], |
| 168 unprotected_let: ["Illegal let declaration in unprotected statem
ent context."], | |
| 169 unprotected_const: ["Illegal const declaration in unprotected stat
ement context."], | |
| 170 cant_prevent_ext_external_array_elements: ["Cannot prevent extension of an obj
ect with external array elements"], | 168 cant_prevent_ext_external_array_elements: ["Cannot prevent extension of an obj
ect with external array elements"], |
| 171 redef_external_array_element: ["Cannot redefine a property of an object with
external array elements"], | 169 redef_external_array_element: ["Cannot redefine a property of an object with
external array elements"], |
| 172 harmony_const_assign: ["Assignment to constant variable."], | 170 harmony_const_assign: ["Assignment to constant variable."], |
| 173 symbol_to_string: ["Cannot convert a Symbol value to a string"], | 171 symbol_to_string: ["Cannot convert a Symbol value to a string"], |
| 174 symbol_to_primitive: ["Cannot convert a Symbol wrapper object to a p
rimitive value"], | 172 symbol_to_primitive: ["Cannot convert a Symbol wrapper object to a p
rimitive value"], |
| 175 symbol_to_number: ["Cannot convert a Symbol value to a number"], | 173 symbol_to_number: ["Cannot convert a Symbol value to a number"], |
| 176 invalid_module_path: ["Module does not export '", "%0", "', or expor
t is not itself a module"], | 174 invalid_module_path: ["Module does not export '", "%0", "', or expor
t is not itself a module"], |
| 177 module_type_error: ["Module '", "%0", "' used improperly"], | 175 module_type_error: ["Module '", "%0", "' used improperly"], |
| 178 module_export_undefined: ["Export '", "%0", "' is not defined in module"
], | 176 module_export_undefined: ["Export '", "%0", "' is not defined in module"
], |
| 179 unexpected_super: ["'super' keyword unexpected here"], | 177 unexpected_super: ["'super' keyword unexpected here"], |
| (...skipping 1136 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1316 function SetUpStackOverflowBoilerplate() { | 1314 function SetUpStackOverflowBoilerplate() { |
| 1317 var boilerplate = MakeRangeError('stack_overflow', []); | 1315 var boilerplate = MakeRangeError('stack_overflow', []); |
| 1318 | 1316 |
| 1319 %DefineAccessorPropertyUnchecked( | 1317 %DefineAccessorPropertyUnchecked( |
| 1320 boilerplate, 'stack', StackTraceGetter, StackTraceSetter, DONT_ENUM); | 1318 boilerplate, 'stack', StackTraceGetter, StackTraceSetter, DONT_ENUM); |
| 1321 | 1319 |
| 1322 return boilerplate; | 1320 return boilerplate; |
| 1323 } | 1321 } |
| 1324 | 1322 |
| 1325 var kStackOverflowBoilerplate = SetUpStackOverflowBoilerplate(); | 1323 var kStackOverflowBoilerplate = SetUpStackOverflowBoilerplate(); |
| OLD | NEW |