Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(187)

Side by Side Diff: src/accessors.cc

Issue 1993633002: Version 5.1.281.41 (cherry-pick) (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@5.1
Patch Set: Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « include/v8-version.h ('k') | src/factory.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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"
(...skipping 14 matching lines...) Expand all
25 Handle<Name> name, 25 Handle<Name> name,
26 AccessorNameGetterCallback getter, 26 AccessorNameGetterCallback getter,
27 AccessorNameSetterCallback setter, 27 AccessorNameSetterCallback setter,
28 PropertyAttributes attributes) { 28 PropertyAttributes attributes) {
29 Factory* factory = isolate->factory(); 29 Factory* factory = isolate->factory();
30 Handle<AccessorInfo> info = factory->NewAccessorInfo(); 30 Handle<AccessorInfo> info = factory->NewAccessorInfo();
31 info->set_property_attributes(attributes); 31 info->set_property_attributes(attributes);
32 info->set_all_can_read(false); 32 info->set_all_can_read(false);
33 info->set_all_can_write(false); 33 info->set_all_can_write(false);
34 info->set_is_special_data_property(true); 34 info->set_is_special_data_property(true);
35 info->set_is_sloppy(false);
35 name = factory->InternalizeName(name); 36 name = factory->InternalizeName(name);
36 info->set_name(*name); 37 info->set_name(*name);
37 Handle<Object> get = v8::FromCData(isolate, getter); 38 Handle<Object> get = v8::FromCData(isolate, getter);
38 if (setter == nullptr) setter = &ReconfigureToDataProperty; 39 if (setter == nullptr) setter = &ReconfigureToDataProperty;
39 Handle<Object> set = v8::FromCData(isolate, setter); 40 Handle<Object> set = v8::FromCData(isolate, setter);
40 info->set_getter(*get); 41 info->set_getter(*get);
41 info->set_setter(*set); 42 info->set_setter(*set);
42 return info; 43 return info;
43 } 44 }
44 45
(...skipping 1161 matching lines...) Expand 10 before | Expand all | Expand 10 after
1206 Isolate* isolate = name->GetIsolate(); 1207 Isolate* isolate = name->GetIsolate();
1207 Handle<AccessorInfo> info = MakeAccessor(isolate, name, &ModuleGetExport, 1208 Handle<AccessorInfo> info = MakeAccessor(isolate, name, &ModuleGetExport,
1208 &ModuleSetExport, attributes); 1209 &ModuleSetExport, attributes);
1209 info->set_data(Smi::FromInt(index)); 1210 info->set_data(Smi::FromInt(index));
1210 return info; 1211 return info;
1211 } 1212 }
1212 1213
1213 1214
1214 } // namespace internal 1215 } // namespace internal
1215 } // namespace v8 1216 } // namespace v8
OLDNEW
« no previous file with comments | « include/v8-version.h ('k') | src/factory.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698