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 #include "src/accessors.h" | 5 #include "src/accessors.h" |
6 | 6 |
7 #include "src/api.h" | 7 #include "src/api.h" |
8 #include "src/contexts.h" | 8 #include "src/contexts.h" |
9 #include "src/deoptimizer.h" | 9 #include "src/deoptimizer.h" |
10 #include "src/execution.h" | 10 #include "src/execution.h" |
11 #include "src/factory.h" | 11 #include "src/factory.h" |
12 #include "src/frames-inl.h" | 12 #include "src/frames-inl.h" |
13 #include "src/isolate-inl.h" | 13 #include "src/isolate-inl.h" |
14 #include "src/list-inl.h" | 14 #include "src/list-inl.h" |
15 #include "src/messages.h" | 15 #include "src/messages.h" |
16 #include "src/property-details.h" | 16 #include "src/property-details.h" |
17 #include "src/prototype.h" | 17 #include "src/prototype.h" |
18 #include "src/string-builder.h" | |
Benedikt Meurer
2016/09/01 10:22:33
Why is this necessary?
jgruber
2016/09/01 10:36:39
Done.
| |
18 | 19 |
19 namespace v8 { | 20 namespace v8 { |
20 namespace internal { | 21 namespace internal { |
21 | 22 |
22 | 23 |
23 Handle<AccessorInfo> Accessors::MakeAccessor( | 24 Handle<AccessorInfo> Accessors::MakeAccessor( |
24 Isolate* isolate, | 25 Isolate* isolate, |
25 Handle<Name> name, | 26 Handle<Name> name, |
26 AccessorNameGetterCallback getter, | 27 AccessorNameGetterCallback getter, |
27 AccessorNameSetterCallback setter, | 28 AccessorNameSetterCallback setter, |
(...skipping 1199 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1227 Handle<AccessorInfo> Accessors::ErrorStackInfo(Isolate* isolate, | 1228 Handle<AccessorInfo> Accessors::ErrorStackInfo(Isolate* isolate, |
1228 PropertyAttributes attributes) { | 1229 PropertyAttributes attributes) { |
1229 Handle<AccessorInfo> info = | 1230 Handle<AccessorInfo> info = |
1230 MakeAccessor(isolate, isolate->factory()->stack_string(), | 1231 MakeAccessor(isolate, isolate->factory()->stack_string(), |
1231 &ErrorStackGetter, &ErrorStackSetter, attributes); | 1232 &ErrorStackGetter, &ErrorStackSetter, attributes); |
1232 return info; | 1233 return info; |
1233 } | 1234 } |
1234 | 1235 |
1235 } // namespace internal | 1236 } // namespace internal |
1236 } // namespace v8 | 1237 } // namespace v8 |
OLD | NEW |