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

Side by Side Diff: src/messages.js

Issue 931223002: [strong] deprecate empty sub-statements (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Another rebase & merge conflicts 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
« no previous file with comments | « no previous file | src/parser.h » ('j') | test/mjsunit/strong/empty-statement.js » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 146 matching lines...) Expand 10 before | Expand all | Expand 10 after
157 strict_delete_property: ["Cannot delete property '", "%0", "' of ", "%1 "], 157 strict_delete_property: ["Cannot delete property '", "%0", "' of ", "%1 "],
158 strict_const: ["Use of const in strict mode."], 158 strict_const: ["Use of const in strict mode."],
159 strict_function: ["In strict mode code, functions can only be de clared at top level or immediately within another function." ], 159 strict_function: ["In strict mode code, functions can only be de clared at top level or immediately within another function." ],
160 strict_read_only_property: ["Cannot assign to read only property '", "%0", "' of ", "%1"], 160 strict_read_only_property: ["Cannot assign to read only property '", "%0", "' of ", "%1"],
161 strict_cannot_assign: ["Cannot assign to read only '", "%0", "' in st rict mode"], 161 strict_cannot_assign: ["Cannot assign to read only '", "%0", "' in st rict mode"],
162 strict_poison_pill: ["'caller', 'callee', and 'arguments' propertie s may not be accessed on strict mode functions or the arguments objects for call s to them"], 162 strict_poison_pill: ["'caller', 'callee', and 'arguments' propertie s may not be accessed on strict mode functions or the arguments objects for call s to them"],
163 strict_caller: ["Illegal access to a strict mode caller functi on."], 163 strict_caller: ["Illegal access to a strict mode caller functi on."],
164 strong_equal: ["Please don't use '==' or '!=' in strong mode, use '===' or '!==' instead"], 164 strong_equal: ["Please don't use '==' or '!=' in strong mode, use '===' or '!==' instead"],
165 strong_delete: ["Please don't use 'delete' in strong mode, use maps or sets instead"], 165 strong_delete: ["Please don't use 'delete' in strong mode, use maps or sets instead"],
166 strong_var: ["Please don't use 'var' in strong mode, use 'l et' or 'const' instead"], 166 strong_var: ["Please don't use 'var' in strong mode, use 'l et' or 'const' instead"],
167 strong_empty: ["Please don't use empty sub-statements in stro ng mode, make them explicit with '{}' instead"],
168 sloppy_lexical: ["Block-scoped declarations (let, const, functi on, class) not yet supported outside strict mode"],
167 malformed_arrow_function_parameter_list: ["Malformed arrow function parameter list"], 169 malformed_arrow_function_parameter_list: ["Malformed arrow function parameter list"],
168 generator_poison_pill: ["'caller' and 'arguments' properties may not b e accessed on generator functions."], 170 generator_poison_pill: ["'caller' and 'arguments' properties may not b e accessed on generator functions."],
169 cant_prevent_ext_external_array_elements: ["Cannot prevent extension of an obj ect with external array elements"], 171 cant_prevent_ext_external_array_elements: ["Cannot prevent extension of an obj ect with external array elements"],
170 redef_external_array_element: ["Cannot redefine a property of an object with external array elements"], 172 redef_external_array_element: ["Cannot redefine a property of an object with external array elements"],
171 harmony_const_assign: ["Assignment to constant variable."], 173 harmony_const_assign: ["Assignment to constant variable."],
172 symbol_to_string: ["Cannot convert a Symbol value to a string"], 174 symbol_to_string: ["Cannot convert a Symbol value to a string"],
173 symbol_to_primitive: ["Cannot convert a Symbol wrapper object to a p rimitive value"], 175 symbol_to_primitive: ["Cannot convert a Symbol wrapper object to a p rimitive value"],
174 symbol_to_number: ["Cannot convert a Symbol value to a number"], 176 symbol_to_number: ["Cannot convert a Symbol value to a number"],
175 invalid_module_path: ["Module does not export '", "%0", "', or expor t is not itself a module"], 177 invalid_module_path: ["Module does not export '", "%0", "', or expor t is not itself a module"],
176 module_type_error: ["Module '", "%0", "' used improperly"], 178 module_type_error: ["Module '", "%0", "' used improperly"],
177 module_export_undefined: ["Export '", "%0", "' is not defined in module" ], 179 module_export_undefined: ["Export '", "%0", "' is not defined in module" ],
178 unexpected_super: ["'super' keyword unexpected here"], 180 unexpected_super: ["'super' keyword unexpected here"],
179 extends_value_not_a_function: ["Class extends value ", "%0", " is not a funct ion or null"], 181 extends_value_not_a_function: ["Class extends value ", "%0", " is not a funct ion or null"],
180 prototype_parent_not_an_object: ["Class extends value does not have valid prot otype property ", "%0"], 182 prototype_parent_not_an_object: ["Class extends value does not have valid prot otype property ", "%0"],
181 duplicate_constructor: ["A class may only have one constructor"], 183 duplicate_constructor: ["A class may only have one constructor"],
182 sloppy_lexical: ["Block-scoped declarations (let, const, functi on, class) not yet supported outside strict mode"],
183 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."], 184 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."],
184 duplicate_proto: ["Duplicate __proto__ fields are not allowed in object literals"], 185 duplicate_proto: ["Duplicate __proto__ fields are not allowed in object literals"],
185 param_after_rest: ["Rest parameter must be last formal parameter" ], 186 param_after_rest: ["Rest parameter must be last formal parameter" ],
186 constructor_noncallable: ["Class constructors cannot be invoked without 'new'"] 187 constructor_noncallable: ["Class constructors cannot be invoked without 'new'"]
187 }; 188 };
188 189
189 190
190 function FormatString(format, args) { 191 function FormatString(format, args) {
191 var result = ""; 192 var result = "";
192 var arg_num = 0; 193 var arg_num = 0;
(...skipping 1124 matching lines...) Expand 10 before | Expand all | Expand 10 after
1317 function SetUpStackOverflowBoilerplate() { 1318 function SetUpStackOverflowBoilerplate() {
1318 var boilerplate = MakeRangeError('stack_overflow', []); 1319 var boilerplate = MakeRangeError('stack_overflow', []);
1319 1320
1320 %DefineAccessorPropertyUnchecked( 1321 %DefineAccessorPropertyUnchecked(
1321 boilerplate, 'stack', StackTraceGetter, StackTraceSetter, DONT_ENUM); 1322 boilerplate, 'stack', StackTraceGetter, StackTraceSetter, DONT_ENUM);
1322 1323
1323 return boilerplate; 1324 return boilerplate;
1324 } 1325 }
1325 1326
1326 var kStackOverflowBoilerplate = SetUpStackOverflowBoilerplate(); 1327 var kStackOverflowBoilerplate = SetUpStackOverflowBoilerplate();
OLDNEW
« no previous file with comments | « no previous file | src/parser.h » ('j') | test/mjsunit/strong/empty-statement.js » ('J')

Powered by Google App Engine
This is Rietveld 408576698