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 138 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
149 accessor_data_property: ["Object literal may not have data and accessor property with the same name"], | 149 accessor_data_property: ["Object literal may not have data and accessor property with the same name"], |
150 accessor_get_set: ["Object literal may not have multiple get/set accessors with the same name"], | 150 accessor_get_set: ["Object literal may not have multiple get/set accessors with the same name"], |
151 strict_delete: ["Delete of an unqualified identifier in strict mode."], | 151 strict_delete: ["Delete of an unqualified identifier in strict mode."], |
152 strict_delete_property: ["Cannot delete property '", "%0", "' of ", "%1 "], | 152 strict_delete_property: ["Cannot delete property '", "%0", "' of ", "%1 "], |
153 strict_const: ["Use of const in strict mode."], | 153 strict_const: ["Use of const in strict mode."], |
154 strict_function: ["In strict mode code, functions can only be de clared at top level or immediately within another function." ], | 154 strict_function: ["In strict mode code, functions can only be de clared at top level or immediately within another function." ], |
155 strict_read_only_property: ["Cannot assign to read only property '", "%0", "' of ", "%1"], | 155 strict_read_only_property: ["Cannot assign to read only property '", "%0", "' of ", "%1"], |
156 strict_cannot_assign: ["Cannot assign to read only '", "%0", "' in st rict mode"], | 156 strict_cannot_assign: ["Cannot assign to read only '", "%0", "' in st rict mode"], |
157 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"], | 157 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"], |
158 strict_caller: ["Illegal access to a strict mode caller functi on."], | 158 strict_caller: ["Illegal access to a strict mode caller functi on."], |
159 strict_parameter_list: ["Malformed strict mode parameter list"], | |
marja
2014/06/26 14:38:13
This error message is not about strict mode parame
| |
159 generator_poison_pill: ["'caller' and 'arguments' properties may not b e accessed on generator functions."], | 160 generator_poison_pill: ["'caller' and 'arguments' properties may not b e accessed on generator functions."], |
160 unprotected_let: ["Illegal let declaration in unprotected statem ent context."], | 161 unprotected_let: ["Illegal let declaration in unprotected statem ent context."], |
161 unprotected_const: ["Illegal const declaration in unprotected stat ement context."], | 162 unprotected_const: ["Illegal const declaration in unprotected stat ement context."], |
162 cant_prevent_ext_external_array_elements: ["Cannot prevent extension of an obj ect with external array elements"], | 163 cant_prevent_ext_external_array_elements: ["Cannot prevent extension of an obj ect with external array elements"], |
163 redef_external_array_element: ["Cannot redefine a property of an object with external array elements"], | 164 redef_external_array_element: ["Cannot redefine a property of an object with external array elements"], |
164 harmony_const_assign: ["Assignment to constant variable."], | 165 harmony_const_assign: ["Assignment to constant variable."], |
165 symbol_to_string: ["Cannot convert a Symbol value to a string"], | 166 symbol_to_string: ["Cannot convert a Symbol value to a string"], |
166 symbol_to_primitive: ["Cannot convert a Symbol wrapper object to a p rimitive value"], | 167 symbol_to_primitive: ["Cannot convert a Symbol wrapper object to a p rimitive value"], |
167 invalid_module_path: ["Module does not export '", "%0", "', or expor t is not itself a module"], | 168 invalid_module_path: ["Module does not export '", "%0", "', or expor t is not itself a module"], |
168 module_type_error: ["Module '", "%0", "' used improperly"], | 169 module_type_error: ["Module '", "%0", "' used improperly"], |
(...skipping 1169 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1338 return result; | 1339 return result; |
1339 }; | 1340 }; |
1340 | 1341 |
1341 %DefineOrRedefineAccessorProperty( | 1342 %DefineOrRedefineAccessorProperty( |
1342 boilerplate, 'stack', getter, setter, DONT_ENUM); | 1343 boilerplate, 'stack', getter, setter, DONT_ENUM); |
1343 | 1344 |
1344 return boilerplate; | 1345 return boilerplate; |
1345 } | 1346 } |
1346 | 1347 |
1347 var kStackOverflowBoilerplate = SetUpStackOverflowBoilerplate(); | 1348 var kStackOverflowBoilerplate = SetUpStackOverflowBoilerplate(); |
OLD | NEW |