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

Side by Side Diff: src/messages.js

Issue 418143007: FYI Implementing 'super' keyword (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: one more test Created 6 years, 4 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 | Annotate | Revision Log
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 148 matching lines...) Expand 10 before | Expand all | Expand 10 after
159 generator_poison_pill: ["'caller' and 'arguments' properties may not b e accessed on generator functions."], 159 generator_poison_pill: ["'caller' and 'arguments' properties may not b e accessed on generator functions."],
160 unprotected_let: ["Illegal let declaration in unprotected statem ent context."], 160 unprotected_let: ["Illegal let declaration in unprotected statem ent context."],
161 unprotected_const: ["Illegal const declaration in unprotected stat ement context."], 161 unprotected_const: ["Illegal const declaration in unprotected stat ement context."],
162 cant_prevent_ext_external_array_elements: ["Cannot prevent extension of an obj ect with external array elements"], 162 cant_prevent_ext_external_array_elements: ["Cannot prevent extension of an obj ect with external array elements"],
163 redef_external_array_element: ["Cannot redefine a property of an object with external array elements"], 163 redef_external_array_element: ["Cannot redefine a property of an object with external array elements"],
164 harmony_const_assign: ["Assignment to constant variable."], 164 harmony_const_assign: ["Assignment to constant variable."],
165 symbol_to_string: ["Cannot convert a Symbol value to a string"], 165 symbol_to_string: ["Cannot convert a Symbol value to a string"],
166 symbol_to_primitive: ["Cannot convert a Symbol wrapper object to a p rimitive value"], 166 symbol_to_primitive: ["Cannot convert a Symbol wrapper object to a p rimitive value"],
167 invalid_module_path: ["Module does not export '", "%0", "', or expor t is not itself a module"], 167 invalid_module_path: ["Module does not export '", "%0", "', or expor t is not itself a module"],
168 module_type_error: ["Module '", "%0", "' used improperly"], 168 module_type_error: ["Module '", "%0", "' used improperly"],
169 module_export_undefined: ["Export '", "%0", "' is not defined in module" ] 169 module_export_undefined: ["Export '", "%0", "' is not defined in module" ],
170 unexpected_super: ["'super' keyword unexpected here"]
170 }; 171 };
171 172
172 173
173 function FormatString(format, args) { 174 function FormatString(format, args) {
174 var result = ""; 175 var result = "";
175 var arg_num = 0; 176 var arg_num = 0;
176 for (var i = 0; i < format.length; i++) { 177 for (var i = 0; i < format.length; i++) {
177 var str = format[i]; 178 var str = format[i];
178 if (str.length == 2 && %_StringCharCodeAt(str, 0) == 0x25) { 179 if (str.length == 2 && %_StringCharCodeAt(str, 0) == 0x25) {
179 // Two-char string starts with "%". 180 // Two-char string starts with "%".
(...skipping 1103 matching lines...) Expand 10 before | Expand all | Expand 10 after
1283 function SetUpStackOverflowBoilerplate() { 1284 function SetUpStackOverflowBoilerplate() {
1284 var boilerplate = MakeRangeError('stack_overflow', []); 1285 var boilerplate = MakeRangeError('stack_overflow', []);
1285 1286
1286 %DefineAccessorPropertyUnchecked( 1287 %DefineAccessorPropertyUnchecked(
1287 boilerplate, 'stack', StackTraceGetter, StackTraceSetter, DONT_ENUM); 1288 boilerplate, 'stack', StackTraceGetter, StackTraceSetter, DONT_ENUM);
1288 1289
1289 return boilerplate; 1290 return boilerplate;
1290 } 1291 }
1291 1292
1292 var kStackOverflowBoilerplate = SetUpStackOverflowBoilerplate(); 1293 var kStackOverflowBoilerplate = SetUpStackOverflowBoilerplate();
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698