Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

TypeError: Cannot read properties of undefined (reading 'Symbol(ProxyTarget)') #97

Open
hpx7 opened this issue May 25, 2022 · 1 comment

Comments

@hpx7
Copy link
Contributor

hpx7 commented May 25, 2022

To repro:

class Foo {
  x() {
    const tmp = this.y;
    tmp(); // no error if we call this.y() directly
  }

  y() {}
}

const foo = new Foo();
const proxiedFoo = onChange(foo, () => {});
proxiedFoo.x();

Error is thrown on this line:

const thisProxyTarget = thisArg[proxyTarget] || thisArg;

(thisArg is undefined)

@joeynenni
Copy link

Running into this same issue.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants