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

Side by Side Diff: src/messages.js

Issue 949763003: WIP: new.target (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 10 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 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 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 // ------------------------------------------------------------------- 5 // -------------------------------------------------------------------
6 6
7 var kMessages = { 7 var kMessages = {
8 // Error 8 // Error
9 cyclic_proto: ["Cyclic __proto__ value"], 9 cyclic_proto: ["Cyclic __proto__ value"],
10 code_gen_from_strings: ["%0"], 10 code_gen_from_strings: ["%0"],
(...skipping 162 matching lines...) Expand 10 before | Expand all | Expand 10 after
173 generator_poison_pill: ["'caller' and 'arguments' properties may not b e accessed on generator functions."], 173 generator_poison_pill: ["'caller' and 'arguments' properties may not b e accessed on generator functions."],
174 cant_prevent_ext_external_array_elements: ["Cannot prevent extension of an obj ect with external array elements"], 174 cant_prevent_ext_external_array_elements: ["Cannot prevent extension of an obj ect with external array elements"],
175 redef_external_array_element: ["Cannot redefine a property of an object with external array elements"], 175 redef_external_array_element: ["Cannot redefine a property of an object with external array elements"],
176 harmony_const_assign: ["Assignment to constant variable."], 176 harmony_const_assign: ["Assignment to constant variable."],
177 symbol_to_string: ["Cannot convert a Symbol value to a string"], 177 symbol_to_string: ["Cannot convert a Symbol value to a string"],
178 symbol_to_primitive: ["Cannot convert a Symbol wrapper object to a p rimitive value"], 178 symbol_to_primitive: ["Cannot convert a Symbol wrapper object to a p rimitive value"],
179 symbol_to_number: ["Cannot convert a Symbol value to a number"], 179 symbol_to_number: ["Cannot convert a Symbol value to a number"],
180 module_export_undefined: ["Export '", "%0", "' is not defined in module" ], 180 module_export_undefined: ["Export '", "%0", "' is not defined in module" ],
181 duplicate_export: ["Duplicate export of '", "%0", "'"], 181 duplicate_export: ["Duplicate export of '", "%0", "'"],
182 unexpected_super: ["'super' keyword unexpected here"], 182 unexpected_super: ["'super' keyword unexpected here"],
183 unexpected_new_target: ["new.target expression is not allowed here"],
183 extends_value_not_a_function: ["Class extends value ", "%0", " is not a funct ion or null"], 184 extends_value_not_a_function: ["Class extends value ", "%0", " is not a funct ion or null"],
184 prototype_parent_not_an_object: ["Class extends value does not have valid prot otype property ", "%0"], 185 prototype_parent_not_an_object: ["Class extends value does not have valid prot otype property ", "%0"],
185 duplicate_constructor: ["A class may only have one constructor"], 186 duplicate_constructor: ["A class may only have one constructor"],
186 super_constructor_call: ["A 'super' constructor call may only appear as the first statement of a function, and its arguments may not access 'this'. Oth er forms are not yet supported."], 187 super_constructor_call: ["A 'super' constructor call may only appear as the first statement of a function, and its arguments may not access 'this'. Oth er forms are not yet supported."],
187 duplicate_proto: ["Duplicate __proto__ fields are not allowed in object literals"], 188 duplicate_proto: ["Duplicate __proto__ fields are not allowed in object literals"],
188 param_after_rest: ["Rest parameter must be last formal parameter" ], 189 param_after_rest: ["Rest parameter must be last formal parameter" ],
189 constructor_noncallable: ["Class constructors cannot be invoked without 'new'"] 190 constructor_noncallable: ["Class constructors cannot be invoked without 'new'"]
190 }; 191 };
191 192
192 193
(...skipping 1127 matching lines...) Expand 10 before | Expand all | Expand 10 after
1320 function SetUpStackOverflowBoilerplate() { 1321 function SetUpStackOverflowBoilerplate() {
1321 var boilerplate = MakeRangeError('stack_overflow', []); 1322 var boilerplate = MakeRangeError('stack_overflow', []);
1322 1323
1323 %DefineAccessorPropertyUnchecked( 1324 %DefineAccessorPropertyUnchecked(
1324 boilerplate, 'stack', StackTraceGetter, StackTraceSetter, DONT_ENUM); 1325 boilerplate, 'stack', StackTraceGetter, StackTraceSetter, DONT_ENUM);
1325 1326
1326 return boilerplate; 1327 return boilerplate;
1327 } 1328 }
1328 1329
1329 var kStackOverflowBoilerplate = SetUpStackOverflowBoilerplate(); 1330 var kStackOverflowBoilerplate = SetUpStackOverflowBoilerplate();
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698