| OLD | NEW |
| 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 181 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 192 unexpected_super: ["'super' keyword unexpected here"], | 192 unexpected_super: ["'super' keyword unexpected here"], |
| 193 extends_value_not_a_function: ["Class extends value ", "%0", " is not a funct
ion or null"], | 193 extends_value_not_a_function: ["Class extends value ", "%0", " is not a funct
ion or null"], |
| 194 prototype_parent_not_an_object: ["Class extends value does not have valid prot
otype property ", "%0"], | 194 prototype_parent_not_an_object: ["Class extends value does not have valid prot
otype property ", "%0"], |
| 195 duplicate_constructor: ["A class may only have one constructor"], | 195 duplicate_constructor: ["A class may only have one constructor"], |
| 196 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."], | 196 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."], |
| 197 duplicate_proto: ["Duplicate __proto__ fields are not allowed in
object literals"], | 197 duplicate_proto: ["Duplicate __proto__ fields are not allowed in
object literals"], |
| 198 param_after_rest: ["Rest parameter must be last formal parameter"
], | 198 param_after_rest: ["Rest parameter must be last formal parameter"
], |
| 199 constructor_noncallable: ["Class constructors cannot be invoked without
'new'"], | 199 constructor_noncallable: ["Class constructors cannot be invoked without
'new'"], |
| 200 array_not_subclassable: ["Subclassing Arrays is not currently supported
."], | 200 array_not_subclassable: ["Subclassing Arrays is not currently supported
."], |
| 201 for_in_loop_initializer: ["for-in loop variable declaration may not have
an initializer."], | 201 for_in_loop_initializer: ["for-in loop variable declaration may not have
an initializer."], |
| 202 for_of_loop_initializer: ["for-of loop variable declaration may not have
an initializer."] | 202 for_of_loop_initializer: ["for-of loop variable declaration may not have
an initializer."], |
| 203 for_inof_loop_multi_bindings: ["Invalid left-hand side in ", "%0", " loop: Mu
st have a single binding."] |
| 203 }; | 204 }; |
| 204 | 205 |
| 205 | 206 |
| 206 function FormatString(format, args) { | 207 function FormatString(format, args) { |
| 207 var result = ""; | 208 var result = ""; |
| 208 var arg_num = 0; | 209 var arg_num = 0; |
| 209 for (var i = 0; i < format.length; i++) { | 210 for (var i = 0; i < format.length; i++) { |
| 210 var str = format[i]; | 211 var str = format[i]; |
| 211 if (str.length == 2 && %_StringCharCodeAt(str, 0) == 0x25) { | 212 if (str.length == 2 && %_StringCharCodeAt(str, 0) == 0x25) { |
| 212 // Two-char string starts with "%". | 213 // Two-char string starts with "%". |
| (...skipping 1067 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1280 function SetUpStackOverflowBoilerplate() { | 1281 function SetUpStackOverflowBoilerplate() { |
| 1281 var boilerplate = MakeRangeError('stack_overflow', []); | 1282 var boilerplate = MakeRangeError('stack_overflow', []); |
| 1282 | 1283 |
| 1283 %DefineAccessorPropertyUnchecked( | 1284 %DefineAccessorPropertyUnchecked( |
| 1284 boilerplate, 'stack', StackTraceGetter, StackTraceSetter, DONT_ENUM); | 1285 boilerplate, 'stack', StackTraceGetter, StackTraceSetter, DONT_ENUM); |
| 1285 | 1286 |
| 1286 return boilerplate; | 1287 return boilerplate; |
| 1287 } | 1288 } |
| 1288 | 1289 |
| 1289 var kStackOverflowBoilerplate = SetUpStackOverflowBoilerplate(); | 1290 var kStackOverflowBoilerplate = SetUpStackOverflowBoilerplate(); |
| OLD | NEW |