-
Notifications
You must be signed in to change notification settings - Fork 207
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
Vega (used in stat-logger) overrides O.p.hasOwnProperty by assignment #2373
Comments
It's probably good to keep up with updates to libraries we use, but I'm willing to bet you a nickel that upgrading will not fix this. How would I go about testing if the newer version of |
In your local copy of SES-shim, comment out the listing of Locally link an agoric-sdk to that modified local copy of the SES-shim. Then, I think it fails under the normal |
You are correct. See vega/vega#3075 . I owe you a nickel. Would you accept $0.05 worth of bitcoin instead? |
Hi @FUDCo See vega/vega#3109 . I think this means
I'll accept it in IST |
Our mitigation of the override mistake adds 8 junk lines to every display of every object by the VSCode debugger's object inspector. #2324 would enable to stop mitigating
Object.prototype.constructor
and thereby remove two of these. If we could stop mitigatingObject.prototype.hasOwnProperties
we could remove another two. Together, this would be a significant noise reduction.@FUDCo AFAICT
Object.prototype.hasOwnProperty
is overridden by assignment only by something called "vega-util" which I think is only linked in due to some stats library you're pulling in. https://github.com/vega/vega-util itself claims to be superceded by https://github.com/vega/vega , so it is possible that upgrading that dependency might painlessly make the problem go away.The text was updated successfully, but these errors were encountered: