Object.prototype.__lookupGetter__()

Deprecated: This feature is no longer recommended. Though some browsers might still support it, it may have already been removed from the relevant web standards, may be in the process of being dropped, or may only be kept for compatibility purposes. Avoid using it, and update existing code if possible; see the compatibility table at the bottom of this page to guide your decision. Be aware that this feature may cease to work at any time.

O método __lookupGetter__ retorna a função limite como uma getter para a específica propriedade.

Sintaxe

obj.__lookupGetter__(sprop)

Parâmetros

sprop

Uma sequência de caracteres contendo o nome da propriedade cuja getter deve retornar.

Valores de retorno

A função limite como uma getter para a específica propriedade.

Descrição

Se uma getter foi definida por uma propriedade de um objeto, não é possível referir-se a função getter através da propriedade, porque essa propriedade se refere ao retorno do valor daquela função. __lookupGetter__ pode ser usado para obter referência à função getter.

Agora é possível fazer isso de um jeito uniforme usando:. Object.getOwnPropertyDescriptor() e Object.getPrototypeOf().

Exemplos

js
var obj = {
  get foo() {
    return Math.random() > 0.5 ? "foo" : "bar";
  },
};

// Non-standard and deprecated way
obj.__lookupGetter__("foo");
// (function() { return Math.random() > 0.5 ? 'foo' : 'bar'; })

// Standard-compliant way
Object.getOwnPropertyDescriptor(obj, "foo").get;
// (function() { return Math.random() > 0.5 ? 'foo' : 'bar'; })

Specificações

Specification
ECMAScript Language Specification
# sec-object.prototype.__lookupGetter__

Compatibilidade com navegadores

BCD tables only load in the browser

Ver também