| 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 320 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 331 T(InvalidDataViewOffset, "Start offset is outside the bounds of the buffer") \ | 331 T(InvalidDataViewOffset, "Start offset is outside the bounds of the buffer") \ |
| 332 T(InvalidHint, "Invalid hint: %") \ | 332 T(InvalidHint, "Invalid hint: %") \ |
| 333 T(InvalidLanguageTag, "Invalid language tag: %") \ | 333 T(InvalidLanguageTag, "Invalid language tag: %") \ |
| 334 T(InvalidWeakMapKey, "Invalid value used as weak map key") \ | 334 T(InvalidWeakMapKey, "Invalid value used as weak map key") \ |
| 335 T(InvalidWeakSetValue, "Invalid value used in weak set") \ | 335 T(InvalidWeakSetValue, "Invalid value used in weak set") \ |
| 336 T(InvalidStringLength, "Invalid string length") \ | 336 T(InvalidStringLength, "Invalid string length") \ |
| 337 T(InvalidTimeValue, "Invalid time value") \ | 337 T(InvalidTimeValue, "Invalid time value") \ |
| 338 T(InvalidTypedArrayAlignment, "% of % should be a multiple of %") \ | 338 T(InvalidTypedArrayAlignment, "% of % should be a multiple of %") \ |
| 339 T(InvalidTypedArrayLength, "Invalid typed array length") \ | 339 T(InvalidTypedArrayLength, "Invalid typed array length") \ |
| 340 T(InvalidTypedArrayOffset, "Start offset is too large:") \ | 340 T(InvalidTypedArrayOffset, "Start offset is too large:") \ |
| 341 T(InvalidIndex, "Invalid index") \ |
| 341 T(InvalidSimdIndex, "Index out of bounds for SIMD operation") \ | 342 T(InvalidSimdIndex, "Index out of bounds for SIMD operation") \ |
| 342 T(InvalidSimdLaneValue, "Lane value out of bounds for SIMD operation") \ | 343 T(InvalidSimdLaneValue, "Lane value out of bounds for SIMD operation") \ |
| 343 T(LetInLexicalBinding, "let is disallowed as a lexically bound name") \ | 344 T(LetInLexicalBinding, "let is disallowed as a lexically bound name") \ |
| 344 T(LocaleMatcher, "Illegal value for localeMatcher:%") \ | 345 T(LocaleMatcher, "Illegal value for localeMatcher:%") \ |
| 345 T(NormalizationForm, "The normalization form should be one of %.") \ | 346 T(NormalizationForm, "The normalization form should be one of %.") \ |
| 346 T(NumberFormatRange, "% argument must be between 0 and 20") \ | 347 T(NumberFormatRange, "% argument must be between 0 and 20") \ |
| 347 T(PropertyValueOutOfRange, "% value is out of range.") \ | 348 T(PropertyValueOutOfRange, "% value is out of range.") \ |
| 348 T(StackOverflow, "Maximum call stack size exceeded") \ | 349 T(StackOverflow, "Maximum call stack size exceeded") \ |
| 349 T(ToPrecisionFormatRange, "toPrecision() argument must be between 1 and 21") \ | 350 T(ToPrecisionFormatRange, "toPrecision() argument must be between 1 and 21") \ |
| 350 T(ToRadixFormatRange, "toString() radix argument must be between 2 and 36") \ | 351 T(ToRadixFormatRange, "toString() radix argument must be between 2 and 36") \ |
| (...skipping 180 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 531 static Handle<String> GetMessage(Isolate* isolate, Handle<Object> data); | 532 static Handle<String> GetMessage(Isolate* isolate, Handle<Object> data); |
| 532 static base::SmartArrayPointer<char> GetLocalizedMessage(Isolate* isolate, | 533 static base::SmartArrayPointer<char> GetLocalizedMessage(Isolate* isolate, |
| 533 Handle<Object> data); | 534 Handle<Object> data); |
| 534 }; | 535 }; |
| 535 | 536 |
| 536 | 537 |
| 537 } // namespace internal | 538 } // namespace internal |
| 538 } // namespace v8 | 539 } // namespace v8 |
| 539 | 540 |
| 540 #endif // V8_MESSAGES_H_ | 541 #endif // V8_MESSAGES_H_ |
| OLD | NEW |