Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2)

Side by Side Diff: src/messages.h

Issue 2637403008: [async-iteration] add support for for-await-of loops in Async Functions (Closed)
Patch Set: remove changes to ParserTarget / PreParserTarget Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 457 matching lines...) Expand 10 before | Expand all | Expand 10 after
468 T(StrictCannotAssign, "Cannot assign to read only '%' in strict mode") \ 468 T(StrictCannotAssign, "Cannot assign to read only '%' in strict mode") \
469 T(StrictDeleteProperty, "Cannot delete property '%' of %") \ 469 T(StrictDeleteProperty, "Cannot delete property '%' of %") \
470 T(StrictPoisonPill, \ 470 T(StrictPoisonPill, \
471 "'caller', 'callee', and 'arguments' properties may not be accessed on " \ 471 "'caller', 'callee', and 'arguments' properties may not be accessed on " \
472 "strict mode functions or the arguments objects for calls to them") \ 472 "strict mode functions or the arguments objects for calls to them") \
473 T(StrictReadOnlyProperty, \ 473 T(StrictReadOnlyProperty, \
474 "Cannot assign to read only property '%' of % '%'") \ 474 "Cannot assign to read only property '%' of % '%'") \
475 T(StrictCannotCreateProperty, "Cannot create property '%' on % '%'") \ 475 T(StrictCannotCreateProperty, "Cannot create property '%' on % '%'") \
476 T(SymbolIteratorInvalid, \ 476 T(SymbolIteratorInvalid, \
477 "Result of the Symbol.iterator method is not an object") \ 477 "Result of the Symbol.iterator method is not an object") \
478 T(SymbolAsyncIteratorInvalid, \
479 "Result of the Symbol.asyncIterator method is not an object") \
478 T(SymbolKeyFor, "% is not a symbol") \ 480 T(SymbolKeyFor, "% is not a symbol") \
479 T(SymbolToNumber, "Cannot convert a Symbol value to a number") \ 481 T(SymbolToNumber, "Cannot convert a Symbol value to a number") \
480 T(SymbolToString, "Cannot convert a Symbol value to a string") \ 482 T(SymbolToString, "Cannot convert a Symbol value to a string") \
481 T(SimdToNumber, "Cannot convert a SIMD value to a number") \ 483 T(SimdToNumber, "Cannot convert a SIMD value to a number") \
482 T(ThrowMethodMissing, "The iterator does not provide a 'throw' method.") \ 484 T(ThrowMethodMissing, "The iterator does not provide a 'throw' method.") \
483 T(UndefinedOrNullToObject, "Cannot convert undefined or null to object") \ 485 T(UndefinedOrNullToObject, "Cannot convert undefined or null to object") \
484 T(ValueAndAccessor, \ 486 T(ValueAndAccessor, \
485 "Invalid property descriptor. Cannot both specify accessors and a value " \ 487 "Invalid property descriptor. Cannot both specify accessors and a value " \
486 "or writable attribute, %") \ 488 "or writable attribute, %") \
487 T(VarRedeclaration, "Identifier '%' has already been declared") \ 489 T(VarRedeclaration, "Identifier '%' has already been declared") \
(...skipping 244 matching lines...) Expand 10 before | Expand all | Expand 10 after
732 const MessageLocation* loc, 734 const MessageLocation* loc,
733 Handle<Object> message_obj, 735 Handle<Object> message_obj,
734 v8::Local<v8::Value> api_exception_obj); 736 v8::Local<v8::Value> api_exception_obj);
735 }; 737 };
736 738
737 739
738 } // namespace internal 740 } // namespace internal
739 } // namespace v8 741 } // namespace v8
740 742
741 #endif // V8_MESSAGES_H_ 743 #endif // V8_MESSAGES_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698