OLD | NEW |
1 // Copyright 2006-2008 the V8 project authors. All rights reserved. | 1 // Copyright 2006-2008 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 // The infrastructure used for (localized) message reporting in V8. | 5 // The infrastructure used for (localized) message reporting in V8. |
6 // | 6 // |
7 // Note: there's a big unresolved issue about ownership of the data | 7 // Note: there's a big unresolved issue about ownership of the data |
8 // structures used by this framework. | 8 // structures used by this framework. |
9 | 9 |
10 #ifndef V8_MESSAGES_H_ | 10 #ifndef V8_MESSAGES_H_ |
(...skipping 224 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
235 T(StrongRedefineDisallowed, \ | 235 T(StrongRedefineDisallowed, \ |
236 "On strong object %, redefining writable, non-configurable property '%' " \ | 236 "On strong object %, redefining writable, non-configurable property '%' " \ |
237 "to be non-writable is deprecated") \ | 237 "to be non-writable is deprecated") \ |
238 T(StrongSetProto, \ | 238 T(StrongSetProto, \ |
239 "On strong object %, redefining the internal prototype is deprecated") \ | 239 "On strong object %, redefining the internal prototype is deprecated") \ |
240 T(SymbolKeyFor, "% is not a symbol") \ | 240 T(SymbolKeyFor, "% is not a symbol") \ |
241 T(SymbolToPrimitive, \ | 241 T(SymbolToPrimitive, \ |
242 "Cannot convert a Symbol wrapper object to a primitive value") \ | 242 "Cannot convert a Symbol wrapper object to a primitive value") \ |
243 T(SymbolToNumber, "Cannot convert a Symbol value to a number") \ | 243 T(SymbolToNumber, "Cannot convert a Symbol value to a number") \ |
244 T(SymbolToString, "Cannot convert a Symbol value to a string") \ | 244 T(SymbolToString, "Cannot convert a Symbol value to a string") \ |
| 245 T(SimdToNumber, "Cannot convert a SIMD value to a number") \ |
245 T(UndefinedOrNullToObject, "Cannot convert undefined or null to object") \ | 246 T(UndefinedOrNullToObject, "Cannot convert undefined or null to object") \ |
246 T(ValueAndAccessor, \ | 247 T(ValueAndAccessor, \ |
247 "Invalid property. A property cannot both have accessors and be " \ | 248 "Invalid property. A property cannot both have accessors and be " \ |
248 "writable or have a value, %") \ | 249 "writable or have a value, %") \ |
249 T(VarRedeclaration, "Identifier '%' has already been declared") \ | 250 T(VarRedeclaration, "Identifier '%' has already been declared") \ |
250 T(WithExpression, "% has no properties") \ | 251 T(WithExpression, "% has no properties") \ |
251 T(WrongArgs, "%: Arguments list has wrong type") \ | 252 T(WrongArgs, "%: Arguments list has wrong type") \ |
252 /* ReferenceError */ \ | 253 /* ReferenceError */ \ |
253 T(NonMethod, "'super' is referenced from non-method") \ | 254 T(NonMethod, "'super' is referenced from non-method") \ |
254 T(NotDefined, "% is not defined") \ | 255 T(NotDefined, "% is not defined") \ |
(...skipping 199 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
454 | 455 |
455 static void DefaultMessageReport(Isolate* isolate, const MessageLocation* loc, | 456 static void DefaultMessageReport(Isolate* isolate, const MessageLocation* loc, |
456 Handle<Object> message_obj); | 457 Handle<Object> message_obj); |
457 static Handle<String> GetMessage(Isolate* isolate, Handle<Object> data); | 458 static Handle<String> GetMessage(Isolate* isolate, Handle<Object> data); |
458 static SmartArrayPointer<char> GetLocalizedMessage(Isolate* isolate, | 459 static SmartArrayPointer<char> GetLocalizedMessage(Isolate* isolate, |
459 Handle<Object> data); | 460 Handle<Object> data); |
460 }; | 461 }; |
461 } } // namespace v8::internal | 462 } } // namespace v8::internal |
462 | 463 |
463 #endif // V8_MESSAGES_H_ | 464 #endif // V8_MESSAGES_H_ |
OLD | NEW |