Add readonly check to property access of index signature#17710
Merged
sandersn merged 3 commits intoAug 16, 2017
Conversation
Unfortunately, the checking code isn't reusable in a large chunk, so I copied it from `getPropertyTypeForIndexType`. It still might be better to extract the four lines to report the error into its own function.
weswigham
approved these changes
Aug 9, 2017
rbuckton
suggested changes
Aug 10, 2017
| if (indexInfo && indexInfo.type) { | ||
| if (indexInfo.isReadonly && (isAssignmentTarget(node) || isDeleteTarget(node))) { | ||
| error(node, Diagnostics.Index_signature_in_type_0_only_permits_reading, typeToString(apparentType)); | ||
| return unknownType; |
Contributor
There was a problem hiding this comment.
Should we return unknownType here? We know the type, even if the access is invalid.
Member
There was a problem hiding this comment.
Agree with Ron. You should fix this in the other place where we perform a read-only check.
Member
Author
There was a problem hiding this comment.
Good catch. Always happy to remove bad code! 💯
ahejlsberg
approved these changes
Aug 10, 2017
Member
ahejlsberg
left a comment
There was a problem hiding this comment.
Approved with the requested changes.
| if (indexInfo && indexInfo.type) { | ||
| if (indexInfo.isReadonly && (isAssignmentTarget(node) || isDeleteTarget(node))) { | ||
| error(node, Diagnostics.Index_signature_in_type_0_only_permits_reading, typeToString(apparentType)); | ||
| return unknownType; |
Member
There was a problem hiding this comment.
Agree with Ron. You should fix this in the other place where we perform a read-only check.
Now, in an assignment to an indexed access of a readonly property, the resulting type is still the property's type. Previously it was unknownType. This improves error reporting slightly by reporting some errors that were previously missed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Fixes #14296
Unfortunately, the checking code isn't reusable in a large chunk, so I copied it from
getPropertyTypeForIndexType. It still might be better to extract the four lines to report the error into its own function.