Lines Matching defs:property
83 // every call that changes or queries a property on the global `this` in the
87 // `delete`, `defineProperty`, and for any query of the property attributes.
93 // For every `get` of a global property in the sandboxed context, the
94 // interceptor callback checks the sandbox object for the property.
95 // If the property is defined on the sandbox, that result is returned to
98 // For every `set` of a global property, the interceptor callback defines or
99 // changes the property both on the sandbox and the global proxy.
457 Local<Name> property,
467 sandbox->GetRealNamedProperty(context, property);
470 ctx->global_proxy()->GetRealNamedProperty(context, property);
484 Local<Name> property,
495 ->GetRealNamedPropertyAttributes(context, property)
502 ->GetRealNamedPropertyAttributes(context, property)
531 if (!is_declared && property->IsSymbol()) return;
532 if (ctx->sandbox()->Set(context, property, value).IsNothing()) return;
537 ->GetOwnPropertyDescriptor(context, property)
544 // property
553 Local<Name> property,
564 if (sandbox->HasOwnProperty(context, property).FromMaybe(false)) {
566 if (sandbox->GetOwnPropertyDescriptor(context, property).ToLocal(&desc)) {
574 Local<Name> property,
588 property)
594 // If the property is set on the global as read_only, don't change it on
609 // Set the property on the sandbox.
610 USE(sandbox->DefineProperty(context, property, *desc_for_sandbox));
635 Local<Name> property,
642 Maybe<bool> success = ctx->sandbox()->Delete(ctx->context(), property);