how can i get $self variable in this code
const $sys = {};
Object.defineProperty($sys, 'comp', {
get: function() {
console.log('====', $self)
}
});
with({ $self: 1 }) {
console.log($sys.comp);
}
with seems like only works on its scope, but not work for inner scope
please do not move defineProperty into with expression