DEBSOURCES
Skip Quicknav
sources / node-rollup / 3.29.5-1 / test / form / samples / recursive-this-deoptimization / main.js
1234567891011
getObj().getThis().method(); getObj().getThis().getThis().method(); function getObj() { return { getThis() { return this; }, method() {}, }; }