Lines Matching defs:details
62 #include "src/codegen/script-details.h"
191 // See ES#sec-%throwtypeerror% for details.
309 // %ThrowTypeError%. See ES#sec-%throwtypeerror% for details.
6115 PropertyDetails details = descs->GetDetails(i);
6116 if (details.location() == PropertyLocation::kField) {
6117 if (details.kind() == PropertyKind::kData) {
6124 isolate(), from, details.representation(), index);
6126 details.attributes());
6128 DCHECK_EQ(PropertyKind::kAccessor, details.kind());
6133 DCHECK_EQ(PropertyLocation::kDescriptor, details.location());
6134 DCHECK_EQ(PropertyKind::kAccessor, details.kind());
6142 PropertyDetails d(PropertyKind::kAccessor, details.attributes(),
6162 PropertyDetails details = cell->property_details();
6163 if (details.kind() == PropertyKind::kData) {
6164 JSObject::AddProperty(isolate(), to, key, value, details.attributes());
6166 DCHECK_EQ(PropertyKind::kAccessor, details.kind());
6168 PropertyDetails d(PropertyKind::kAccessor, details.attributes(),
6192 PropertyDetails details = properties->DetailsAt(entry);
6193 DCHECK_EQ(PropertyKind::kData, details.kind());
6194 JSObject::AddProperty(isolate(), to, key, value, details.attributes());
6216 PropertyDetails details = properties->DetailsAt(key_index);
6217 DCHECK_EQ(PropertyKind::kData, details.kind());
6218 JSObject::AddProperty(isolate(), to, key, value, details.attributes());