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

Side by Side Diff: src/messages.h

Issue 2620943002: [ESnext] Implement Object Rest (Closed)
Patch Set: fix nits 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
« no previous file with comments | « src/flag-definitions.h ('k') | src/objects.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 571 matching lines...) Expand 10 before | Expand all | Expand 10 after
582 T(ModuleExportUndefined, "Export '%' is not defined in module") \ 582 T(ModuleExportUndefined, "Export '%' is not defined in module") \
583 T(MultipleDefaultsInSwitch, \ 583 T(MultipleDefaultsInSwitch, \
584 "More than one default clause in switch statement") \ 584 "More than one default clause in switch statement") \
585 T(NewlineAfterThrow, "Illegal newline after throw") \ 585 T(NewlineAfterThrow, "Illegal newline after throw") \
586 T(NoCatchOrFinally, "Missing catch or finally after try") \ 586 T(NoCatchOrFinally, "Missing catch or finally after try") \
587 T(NotIsvar, "builtin %%IS_VAR: not a variable") \ 587 T(NotIsvar, "builtin %%IS_VAR: not a variable") \
588 T(ParamAfterRest, "Rest parameter must be last formal parameter") \ 588 T(ParamAfterRest, "Rest parameter must be last formal parameter") \
589 T(PushPastSafeLength, \ 589 T(PushPastSafeLength, \
590 "Pushing % elements on an array-like of length % " \ 590 "Pushing % elements on an array-like of length % " \
591 "is disallowed, as the total surpasses 2**53-1") \ 591 "is disallowed, as the total surpasses 2**53-1") \
592 T(ElementAfterRest, "Rest element must be last element in array") \ 592 T(ElementAfterRest, "Rest element must be last element") \
593 T(BadSetterRestParameter, \ 593 T(BadSetterRestParameter, \
594 "Setter function argument must not be a rest parameter") \ 594 "Setter function argument must not be a rest parameter") \
595 T(ParamDupe, "Duplicate parameter name not allowed in this context") \ 595 T(ParamDupe, "Duplicate parameter name not allowed in this context") \
596 T(ParenthesisInArgString, "Function arg string contains parenthesis") \ 596 T(ParenthesisInArgString, "Function arg string contains parenthesis") \
597 T(RuntimeWrongNumArgs, "Runtime function given wrong number of arguments") \ 597 T(RuntimeWrongNumArgs, "Runtime function given wrong number of arguments") \
598 T(SingleFunctionLiteral, "Single function literal required") \ 598 T(SingleFunctionLiteral, "Single function literal required") \
599 T(SloppyFunction, \ 599 T(SloppyFunction, \
600 "In non-strict mode code, functions can only be declared at top level, " \ 600 "In non-strict mode code, functions can only be declared at top level, " \
601 "inside a block, or as the body of an if statement.") \ 601 "inside a block, or as the body of an if statement.") \
602 T(SpeciesNotConstructor, \ 602 T(SpeciesNotConstructor, \
(...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after
731 const MessageLocation* loc, 731 const MessageLocation* loc,
732 Handle<Object> message_obj, 732 Handle<Object> message_obj,
733 v8::Local<v8::Value> api_exception_obj); 733 v8::Local<v8::Value> api_exception_obj);
734 }; 734 };
735 735
736 736
737 } // namespace internal 737 } // namespace internal
738 } // namespace v8 738 } // namespace v8
739 739
740 #endif // V8_MESSAGES_H_ 740 #endif // V8_MESSAGES_H_
OLDNEW
« no previous file with comments | « src/flag-definitions.h ('k') | src/objects.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698