mirror of
https://github.com/kkapsner/CanvasBlocker
synced 2025-07-04 20:46:39 +02:00
fake- and getterGenerator: added original and window in call
Might enable a performance increase.
This commit is contained in:
parent
103397e35d
commit
82ba61095a
1 changed files with 2 additions and 2 deletions
|
@ -305,7 +305,7 @@
|
||||||
if (descriptor.hasOwnProperty("value")){
|
if (descriptor.hasOwnProperty("value")){
|
||||||
if (changedFunction.fakeGenerator){
|
if (changedFunction.fakeGenerator){
|
||||||
descriptor.value = exportFunction(
|
descriptor.value = exportFunction(
|
||||||
changedFunction.fakeGenerator(checker),
|
changedFunction.fakeGenerator(checker, original, window),
|
||||||
window
|
window
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
@ -339,7 +339,7 @@
|
||||||
if (descriptor && descriptor.hasOwnProperty("get")){
|
if (descriptor && descriptor.hasOwnProperty("get")){
|
||||||
const original = descriptor.get;
|
const original = descriptor.get;
|
||||||
const checker = generateChecker(name, changedGetter, siteStatus, original);
|
const checker = generateChecker(name, changedGetter, siteStatus, original);
|
||||||
const getter = changedGetter.getterGenerator(checker);
|
const getter = changedGetter.getterGenerator(checker, original, window);
|
||||||
descriptor.get = exportFunction(getter, window);
|
descriptor.get = exportFunction(getter, window);
|
||||||
|
|
||||||
if (descriptor.hasOwnProperty("set") && changedGetter.setterGenerator){
|
if (descriptor.hasOwnProperty("set") && changedGetter.setterGenerator){
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue