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 136 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
147 accessor_data_property: ["Object literal may not have data and accessor
property with the same name"], | 147 accessor_data_property: ["Object literal may not have data and accessor
property with the same name"], |
148 accessor_get_set: ["Object literal may not have multiple get/set
accessors with the same name"], | 148 accessor_get_set: ["Object literal may not have multiple get/set
accessors with the same name"], |
149 strict_delete: ["Delete of an unqualified identifier in strict
mode."], | 149 strict_delete: ["Delete of an unqualified identifier in strict
mode."], |
150 strict_delete_property: ["Cannot delete property '", "%0", "' of ", "%1
"], | 150 strict_delete_property: ["Cannot delete property '", "%0", "' of ", "%1
"], |
151 strict_const: ["Use of const in strict mode."], | 151 strict_const: ["Use of const in strict mode."], |
152 strict_function: ["In strict mode code, functions can only be de
clared at top level or immediately within another function." ], | 152 strict_function: ["In strict mode code, functions can only be de
clared at top level or immediately within another function." ], |
153 strict_read_only_property: ["Cannot assign to read only property '", "%0",
"' of ", "%1"], | 153 strict_read_only_property: ["Cannot assign to read only property '", "%0",
"' of ", "%1"], |
154 strict_cannot_assign: ["Cannot assign to read only '", "%0", "' in st
rict mode"], | 154 strict_cannot_assign: ["Cannot assign to read only '", "%0", "' in st
rict mode"], |
155 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"], | 155 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"], |
156 strict_caller: ["Illegal access to a strict mode caller functi
on."], | 156 strict_caller: ["Illegal access to a strict mode caller functi
on."], |
157 malformed_arrow_function_parameter_list: ["Malformed arrow function parameter
list"], | |
158 generator_poison_pill: ["'caller' and 'arguments' properties may not b
e accessed on generator functions."], | 157 generator_poison_pill: ["'caller' and 'arguments' properties may not b
e accessed on generator functions."], |
159 unprotected_let: ["Illegal let declaration in unprotected statem
ent context."], | 158 unprotected_let: ["Illegal let declaration in unprotected statem
ent context."], |
160 unprotected_const: ["Illegal const declaration in unprotected stat
ement context."], | 159 unprotected_const: ["Illegal const declaration in unprotected stat
ement context."], |
161 cant_prevent_ext_external_array_elements: ["Cannot prevent extension of an obj
ect with external array elements"], | 160 cant_prevent_ext_external_array_elements: ["Cannot prevent extension of an obj
ect with external array elements"], |
162 redef_external_array_element: ["Cannot redefine a property of an object with
external array elements"], | 161 redef_external_array_element: ["Cannot redefine a property of an object with
external array elements"], |
163 harmony_const_assign: ["Assignment to constant variable."], | 162 harmony_const_assign: ["Assignment to constant variable."], |
164 symbol_to_string: ["Cannot convert a Symbol value to a string"], | 163 symbol_to_string: ["Cannot convert a Symbol value to a string"], |
165 symbol_to_primitive: ["Cannot convert a Symbol wrapper object to a p
rimitive value"], | 164 symbol_to_primitive: ["Cannot convert a Symbol wrapper object to a p
rimitive value"], |
166 invalid_module_path: ["Module does not export '", "%0", "', or expor
t is not itself a module"], | 165 invalid_module_path: ["Module does not export '", "%0", "', or expor
t is not itself a module"], |
167 module_type_error: ["Module '", "%0", "' used improperly"], | 166 module_type_error: ["Module '", "%0", "' used improperly"], |
(...skipping 1112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1280 function SetUpStackOverflowBoilerplate() { | 1279 function SetUpStackOverflowBoilerplate() { |
1281 var boilerplate = MakeRangeError('stack_overflow', []); | 1280 var boilerplate = MakeRangeError('stack_overflow', []); |
1282 | 1281 |
1283 %DefineAccessorPropertyUnchecked( | 1282 %DefineAccessorPropertyUnchecked( |
1284 boilerplate, 'stack', StackTraceGetter, StackTraceSetter, DONT_ENUM); | 1283 boilerplate, 'stack', StackTraceGetter, StackTraceSetter, DONT_ENUM); |
1285 | 1284 |
1286 return boilerplate; | 1285 return boilerplate; |
1287 } | 1286 } |
1288 | 1287 |
1289 var kStackOverflowBoilerplate = SetUpStackOverflowBoilerplate(); | 1288 var kStackOverflowBoilerplate = SetUpStackOverflowBoilerplate(); |
OLD | NEW |