OLD | NEW |
1 // Copyright 2006-2008 the V8 project authors. All rights reserved. | 1 // Copyright 2006-2008 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 // This files contains runtime support implemented in JavaScript. | 5 // This files contains runtime support implemented in JavaScript. |
6 | 6 |
7 // CAUTION: Some of the functions specified in this file are called | 7 // CAUTION: Some of the functions specified in this file are called |
8 // directly from compiled code. These are the functions with names in | 8 // directly from compiled code. These are the functions with names in |
9 // ALL CAPS. The compiled code passes the first argument in 'this'. | 9 // ALL CAPS. The compiled code passes the first argument in 'this'. |
10 | 10 |
(...skipping 233 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
244 "concat_iterable_to_array_builtin", CONCAT_ITERABLE_TO_ARRAY, | 244 "concat_iterable_to_array_builtin", CONCAT_ITERABLE_TO_ARRAY, |
245 "reflect_apply_prepare_builtin", REFLECT_APPLY_PREPARE, | 245 "reflect_apply_prepare_builtin", REFLECT_APPLY_PREPARE, |
246 "reflect_construct_prepare_builtin", REFLECT_CONSTRUCT_PREPARE, | 246 "reflect_construct_prepare_builtin", REFLECT_CONSTRUCT_PREPARE, |
247 ]); | 247 ]); |
248 | 248 |
249 %InstallToContext([ | 249 %InstallToContext([ |
250 "concat_iterable_to_array", ConcatIterableToArray, | 250 "concat_iterable_to_array", ConcatIterableToArray, |
251 ]); | 251 ]); |
252 | 252 |
253 }) | 253 }) |
OLD | NEW |