We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The current Scope.prototype._read does a lot of work to keep track of all observables that were checked when looking for a property:
Scope.prototype._read
can-view-scope/can-view-scope.js
Lines 320 to 323 in 8db47da
When most lookups will not walk the scope, this is a lot of unnecessary work.
We should make a faster path that does not do all of this and eventually remove this code.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The current
Scope.prototype._read
does a lot of work to keep track of all observables that were checked when looking for a property:can-view-scope/can-view-scope.js
Lines 320 to 323 in 8db47da
When most lookups will not walk the scope, this is a lot of unnecessary work.
We should make a faster path that does not do all of this and eventually remove this code.
The text was updated successfully, but these errors were encountered: