OLD | NEW |
1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 the V8 project authors. All rights reserved. |
2 // Redistribution and use in source and binary forms, with or without | 2 // Redistribution and use in source and binary forms, with or without |
3 // modification, are permitted provided that the following conditions are | 3 // modification, are permitted provided that the following conditions are |
4 // met: | 4 // met: |
5 // | 5 // |
6 // * Redistributions of source code must retain the above copyright | 6 // * Redistributions of source code must retain the above copyright |
7 // notice, this list of conditions and the following disclaimer. | 7 // notice, this list of conditions and the following disclaimer. |
8 // * Redistributions in binary form must reproduce the above | 8 // * Redistributions in binary form must reproduce the above |
9 // copyright notice, this list of conditions and the following | 9 // copyright notice, this list of conditions and the following |
10 // disclaimer in the documentation and/or other materials provided | 10 // disclaimer in the documentation and/or other materials provided |
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
97 not_date_object: ["this is not a Date object."], | 97 not_date_object: ["this is not a Date object."], |
98 observe_non_object: ["Object.", "%0", " cannot ", "%0", " non-objec
t"], | 98 observe_non_object: ["Object.", "%0", " cannot ", "%0", " non-objec
t"], |
99 observe_non_function: ["Object.", "%0", " cannot deliver to non-funct
ion"], | 99 observe_non_function: ["Object.", "%0", " cannot deliver to non-funct
ion"], |
100 observe_callback_frozen: ["Object.observe cannot deliver to a frozen fun
ction object"], | 100 observe_callback_frozen: ["Object.observe cannot deliver to a frozen fun
ction object"], |
101 observe_type_non_string: ["Invalid changeRecord with non-string 'type' p
roperty"], | 101 observe_type_non_string: ["Invalid changeRecord with non-string 'type' p
roperty"], |
102 observe_notify_non_notifier: ["notify called on non-notifier object"], | 102 observe_notify_non_notifier: ["notify called on non-notifier object"], |
103 proto_poison_pill: ["Generic use of __proto__ accessor not allowed
"], | 103 proto_poison_pill: ["Generic use of __proto__ accessor not allowed
"], |
104 parameterless_typed_array_constr: | 104 parameterless_typed_array_constr: |
105 ["%0"," constructor should have at least one ar
gument."], | 105 ["%0"," constructor should have at least one ar
gument."], |
106 not_typed_array: ["this is not a typed array."], | 106 not_typed_array: ["this is not a typed array."], |
| 107 invalid_argument: ["invalid_argument"], |
107 // RangeError | 108 // RangeError |
108 invalid_array_length: ["Invalid array length"], | 109 invalid_array_length: ["Invalid array length"], |
109 invalid_array_buffer_length: ["Invalid array buffer length"], | 110 invalid_array_buffer_length: ["Invalid array buffer length"], |
110 invalid_typed_array_offset: ["Start offset is too large"], | 111 invalid_typed_array_offset: ["Start offset is too large"], |
111 invalid_typed_array_length: ["Length is too large"], | 112 invalid_typed_array_length: ["Length is too large"], |
112 invalid_typed_array_alignment: ["%0", "of", "%1", "should be a multiple of", "
%3"], | 113 invalid_typed_array_alignment: ["%0", "of", "%1", "should be a multiple of", "
%3"], |
| 114 typed_array_set_source_too_large: |
| 115 ["Source is too large"], |
113 stack_overflow: ["Maximum call stack size exceeded"], | 116 stack_overflow: ["Maximum call stack size exceeded"], |
114 invalid_time_value: ["Invalid time value"], | 117 invalid_time_value: ["Invalid time value"], |
115 // SyntaxError | 118 // SyntaxError |
116 paren_in_arg_string: ["Function arg string contains parenthesis"], | 119 paren_in_arg_string: ["Function arg string contains parenthesis"], |
117 not_isvar: ["builtin %IS_VAR: not a variable"], | 120 not_isvar: ["builtin %IS_VAR: not a variable"], |
118 single_function_literal: ["Single function literal required"], | 121 single_function_literal: ["Single function literal required"], |
119 invalid_regexp_flags: ["Invalid flags supplied to RegExp constructor
'", "%0", "'"], | 122 invalid_regexp_flags: ["Invalid flags supplied to RegExp constructor
'", "%0", "'"], |
120 invalid_regexp: ["Invalid RegExp pattern /", "%0", "/"], | 123 invalid_regexp: ["Invalid RegExp pattern /", "%0", "/"], |
121 illegal_break: ["Illegal break statement"], | 124 illegal_break: ["Illegal break statement"], |
122 illegal_continue: ["Illegal continue statement"], | 125 illegal_continue: ["Illegal continue statement"], |
(...skipping 1196 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1319 %SetOverflowedStackTrace(this, void 0); | 1322 %SetOverflowedStackTrace(this, void 0); |
1320 } | 1323 } |
1321 | 1324 |
1322 %DefineOrRedefineAccessorProperty( | 1325 %DefineOrRedefineAccessorProperty( |
1323 boilerplate, 'stack', getter, setter, DONT_ENUM); | 1326 boilerplate, 'stack', getter, setter, DONT_ENUM); |
1324 | 1327 |
1325 return boilerplate; | 1328 return boilerplate; |
1326 } | 1329 } |
1327 | 1330 |
1328 var kStackOverflowBoilerplate = SetUpStackOverflowBoilerplate(); | 1331 var kStackOverflowBoilerplate = SetUpStackOverflowBoilerplate(); |
OLD | NEW |