-
Notifications
You must be signed in to change notification settings - Fork 12.8k
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
BUG: getters, setters and inheritance #13432
Comments
Thanks for the clarification @mhegazy. Would it ever be possible to extend TypeScript to support edge cases like this? Also emitting a different JavaScript code sometimes can be really helpful. |
this is not an edge case, this is a behavior clearly not allowed by the JS spec. TypeScript aims to be a super set of JS, that entails following the spec. |
Could we at least get a compiler error or a warning? This current behavior is inconsistent with how typescript otherwise behaves. The closest analogous behavior is when both the base and subclass both contain the same private member. Rather than letting broken behavior silently slip through, the typescript compiler throws a compiler error (TS2415). |
I do not see why this is the case.
Issue #11596 tracks making this an error. |
I'm going to disagree, and use the example I provided when I made that assertion (Typescript throwing an error when an instance property would otherwise be silently invalidated). Unless you're interpreting that statement differently? I have difficulty believing the Typescript team believes letting something silently fail is consistent with the overall experience you're working to achieve.
From my read, #11596 is tracking a separate issue and separate concept - removing the ability the define just a setter (which, incidentally, I'm not fond of - I like the symmetry of readonly and writeonly properties, and agree with Igorbek's use-site variance argument). I opened up issue #13669 to track the opposite version of the underlying issue endel hit - having a get in the a base class invalidated by a set in a subclass. It's the same underlying problem - the subclass's defineProperty() removing the base classes property definition. #13669 got duped to this (#13432). Which Is reasonable, if this is tracking that general problem. But if this bug is "merely" tracking disabling set-only accessors (which appears to still be actively debated), this isn't the same concept. But, if you disagree with the previous assertion, shouldn't this be duped against #11596, rather than flagged Working as Intended? |
TypeScript Version: 2.1.4
Code
Expected behavior:
Should output
10
.Actual behavior:
"Cannot assign to 'height' because it is a constant or a read-only property."
undefined
.The problem here is that the
Intermediary
class is overwriting theset
method. I've changed the output.js
file to fix this issue, and it looked like this: (usinggetOwnPropertyDescriptor
on parent's prototype to keep theset
reference.)The text was updated successfully, but these errors were encountered: