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
We currently have a case where we call __proto__ to determine if the object is a plain JS object:
__proto__
Use of __proto__ should be replaced by Object.getPrototypeOf(#)`. Or maybe we can use the object runtime metadata to determine its type?
__proto__ should be replaced by
See more information in dart-lang/sdk#52372
webdev/dwds/lib/src/debugging/inspector.dart
Line 219 in 2b2ae0e
The text was updated successfully, but these errors were encountered:
Is this a duplicate issue of dart-lang/sdk#52372? Looks like the issue has already been closed.
Sorry, something went wrong.
I don't think so. There's still references to this.__proto__ in DWDS.
this.__proto__
jyameo
Successfully merging a pull request may close this issue.
We currently have a case where we call
__proto__
to determine if the object is a plain JS object:Use of
__proto__ should be replaced by
Object.getPrototypeOf(#)`. Or maybe we can use the object runtime metadata to determine its type?See more information in dart-lang/sdk#52372
webdev/dwds/lib/src/debugging/inspector.dart
Line 219 in 2b2ae0e
The text was updated successfully, but these errors were encountered: