OLD | NEW |
1 // Copyright 2014 the V8 project authors. All rights reserved. | 1 // Copyright 2014 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 #include "src/bootstrapper.h" | 5 #include "src/bootstrapper.h" |
6 | 6 |
7 #include "src/accessors.h" | 7 #include "src/accessors.h" |
8 #include "src/api-natives.h" | 8 #include "src/api-natives.h" |
9 #include "src/code-stubs.h" | 9 #include "src/code-stubs.h" |
10 #include "src/extensions/externalize-string-extension.h" | 10 #include "src/extensions/externalize-string-extension.h" |
(...skipping 2114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2125 SimpleInstallFunction(reflect, "get", | 2125 SimpleInstallFunction(reflect, "get", |
2126 Builtins::kReflectGet, 3, false); | 2126 Builtins::kReflectGet, 3, false); |
2127 SimpleInstallFunction(reflect, "getOwnPropertyDescriptor", | 2127 SimpleInstallFunction(reflect, "getOwnPropertyDescriptor", |
2128 Builtins::kReflectGetOwnPropertyDescriptor, 2, true); | 2128 Builtins::kReflectGetOwnPropertyDescriptor, 2, true); |
2129 SimpleInstallFunction(reflect, "getPrototypeOf", | 2129 SimpleInstallFunction(reflect, "getPrototypeOf", |
2130 Builtins::kReflectGetPrototypeOf, 1, true); | 2130 Builtins::kReflectGetPrototypeOf, 1, true); |
2131 SimpleInstallFunction(reflect, "has", | 2131 SimpleInstallFunction(reflect, "has", |
2132 Builtins::kReflectHas, 2, true); | 2132 Builtins::kReflectHas, 2, true); |
2133 SimpleInstallFunction(reflect, "isExtensible", | 2133 SimpleInstallFunction(reflect, "isExtensible", |
2134 Builtins::kReflectIsExtensible, 1, true); | 2134 Builtins::kReflectIsExtensible, 1, true); |
| 2135 SimpleInstallFunction(reflect, "ownKeys", |
| 2136 Builtins::kReflectOwnKeys, 1, true); |
2135 SimpleInstallFunction(reflect, "preventExtensions", | 2137 SimpleInstallFunction(reflect, "preventExtensions", |
2136 Builtins::kReflectPreventExtensions, 1, true); | 2138 Builtins::kReflectPreventExtensions, 1, true); |
2137 SimpleInstallFunction(reflect, "set", | 2139 SimpleInstallFunction(reflect, "set", |
2138 Builtins::kReflectSet, 3, false); | 2140 Builtins::kReflectSet, 3, false); |
2139 SimpleInstallFunction(reflect, "setPrototypeOf", | 2141 SimpleInstallFunction(reflect, "setPrototypeOf", |
2140 Builtins::kReflectSetPrototypeOf, 2, true); | 2142 Builtins::kReflectSetPrototypeOf, 2, true); |
2141 } | 2143 } |
2142 | 2144 |
2143 | 2145 |
2144 void Genesis::InitializeGlobal_harmony_sharedarraybuffer() { | 2146 void Genesis::InitializeGlobal_harmony_sharedarraybuffer() { |
(...skipping 1099 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3244 } | 3246 } |
3245 | 3247 |
3246 | 3248 |
3247 // Called when the top-level V8 mutex is destroyed. | 3249 // Called when the top-level V8 mutex is destroyed. |
3248 void Bootstrapper::FreeThreadResources() { | 3250 void Bootstrapper::FreeThreadResources() { |
3249 DCHECK(!IsActive()); | 3251 DCHECK(!IsActive()); |
3250 } | 3252 } |
3251 | 3253 |
3252 } // namespace internal | 3254 } // namespace internal |
3253 } // namespace v8 | 3255 } // namespace v8 |
OLD | NEW |