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
Recent changes caused what used to gracefully fail on unexpected input now inadvertently throw, which could cause unexpected breakage:
Polymer.Collection.getItem(key)
undefined
Polymer.Base.notifyPath(path, value)
The text was updated successfully, but these errors were encountered:
5076ee0
Merge pull request #3019 from Polymer/3018-kschaaf-avoid-throw
4d45842
Avoid throwing with invalid keys/paths. Fixes #3018.
kevinpschaaf
No branches or pull requests
Recent changes caused what used to gracefully fail on unexpected input now inadvertently throw, which could cause unexpected breakage:
Polymer.Collection.getItem(key)
with anundefined
key now throws where it didn't previouslyPolymer.Base.notifyPath(path, value)
where the path cannot be dereferenced to the leaf now throws where it didn't previouslyThe text was updated successfully, but these errors were encountered: