| 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 358 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 369 T(StrongEllision, \ | 369 T(StrongEllision, \ |
| 370 "In strong mode, arrays with holes are deprecated, use maps instead") \ | 370 "In strong mode, arrays with holes are deprecated, use maps instead") \ |
| 371 T(StrongEmpty, \ | 371 T(StrongEmpty, \ |
| 372 "In strong mode, empty sub-statements are deprecated, make them explicit " \ | 372 "In strong mode, empty sub-statements are deprecated, make them explicit " \ |
| 373 "with '{}' instead") \ | 373 "with '{}' instead") \ |
| 374 T(StrongEqual, \ | 374 T(StrongEqual, \ |
| 375 "In strong mode, '==' and '!=' are deprecated, use '===' and '!==' " \ | 375 "In strong mode, '==' and '!=' are deprecated, use '===' and '!==' " \ |
| 376 "instead") \ | 376 "instead") \ |
| 377 T(StrongForIn, \ | 377 T(StrongForIn, \ |
| 378 "In strong mode, 'for'-'in' loops are deprecated, use 'for'-'of' instead") \ | 378 "In strong mode, 'for'-'in' loops are deprecated, use 'for'-'of' instead") \ |
| 379 T(StrongPropertyAccess, \ |
| 380 "In strong mode, accessing missing property '%' of % is deprecated") \ |
| 379 T(StrongSuperCallDuplicate, \ | 381 T(StrongSuperCallDuplicate, \ |
| 380 "In strong mode, invoking the super constructor multiple times is " \ | 382 "In strong mode, invoking the super constructor multiple times is " \ |
| 381 "deprecated") \ | 383 "deprecated") \ |
| 382 T(StrongSuperCallMisplaced, \ | 384 T(StrongSuperCallMisplaced, \ |
| 383 "In strong mode, the super constructor must be invoked before any " \ | 385 "In strong mode, the super constructor must be invoked before any " \ |
| 384 "assignment to 'this'") \ | 386 "assignment to 'this'") \ |
| 385 T(StrongSwitchFallthrough, \ | 387 T(StrongSwitchFallthrough, \ |
| 386 "In strong mode, switch fall-through is deprecated, terminate each case " \ | 388 "In strong mode, switch fall-through is deprecated, terminate each case " \ |
| 387 "with 'break', 'continue', 'return' or 'throw'") \ | 389 "with 'break', 'continue', 'return' or 'throw'") \ |
| 388 T(StrongUndefined, \ | 390 T(StrongUndefined, \ |
| (...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 453 | 455 |
| 454 static void DefaultMessageReport(Isolate* isolate, const MessageLocation* loc, | 456 static void DefaultMessageReport(Isolate* isolate, const MessageLocation* loc, |
| 455 Handle<Object> message_obj); | 457 Handle<Object> message_obj); |
| 456 static Handle<String> GetMessage(Isolate* isolate, Handle<Object> data); | 458 static Handle<String> GetMessage(Isolate* isolate, Handle<Object> data); |
| 457 static SmartArrayPointer<char> GetLocalizedMessage(Isolate* isolate, | 459 static SmartArrayPointer<char> GetLocalizedMessage(Isolate* isolate, |
| 458 Handle<Object> data); | 460 Handle<Object> data); |
| 459 }; | 461 }; |
| 460 } } // namespace v8::internal | 462 } } // namespace v8::internal |
| 461 | 463 |
| 462 #endif // V8_MESSAGES_H_ | 464 #endif // V8_MESSAGES_H_ |
| OLD | NEW |