- Notifications
You must be signed in to change notification settings - Fork13.2k
Add useDefineForClassFields flag for Set -> Define property declaration#33509
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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
Merged
Uh oh!
There was an error while loading.Please reload this page.
Merged
Changes from1 commit
Commits
Show all changes
57 commits Select commitHold shift + click to select a range
f76e01f Disallow property/accessor overrides
sandersnac96739 Disallow uninitialised property overrides
sandersnc26785e Merge branch 'master' into disallow-property-accessor-override
sandersnc4f334a Updates from design review + fix ancient bug
sandersn70a15bd Need to add a couple of errors and squash one
sandersnfeb0fb6 Everything works so far
sandersn8686242 Check for constructor initialisation
sandersn2916c29 change error wording
sandersn2e5f57c Improve error wording
sandersnf11f2be Add codefix to add missing 'declare'
sandersn526ceb7 Merge branch 'master' into disallow-property-accessor-override
sandersna8f4610 Merge branch 'master' into disallow-uninitialised-property-override
sandersn2238b66 Always emit accessors in .d.ts files
sandersnfcf0ff1 Allow 'declare' on any uninitialised property decl
sandersn810f923 Undo code moves
sandersn6408d7a Let sleeping dogs lie
sandersn5ee3271 Correctly set NodeFlags.Ambient
sandersne0ddced Remove more unneeded code
sandersn610a62d Merge branch 'disallow-property-accessor-override' into add-property-…
sandersne7ba1ae Merge branch 'disallow-uninitialised-property-override' into add-prop…
sandersn6c94395 Merge branch 'always-emit-accessors-in-dts' into add-property-define-…
sandersn6a066b9 Update baselines
sandersn0548220 Merge branch 'disallow-uninitialised-property-override' into sandersn…
sandersn7f69be7 Update baselines
sandersn8f42126 Merge branch 'always-emit-accessors-in-dts' into sandersn/add-propert…
sandersnd46a0db Update baselines
sandersn58e1746 Ignore this-property assignments
sandersn9b358b1 Merge branch 'disallow-property-accessor-override' into sandersn/add-…
sandersn832d51f Fix base-in-interface check
sandersn9c6aa17 Merge branch 'disallow-property-accessor-override' into sandersn/add-…
sandersna645ca9 Do not error when base parent is interface
sandersn030c768 Fix base interface check
sandersn003d041 Add missed baselines
sandersn6ec445f Fix check
sandersnc283574 Fix new errors in services
sandersn1c5f699 Fix new errors in services
sandersn2403116 Merge branch 'disallow-property-accessor-override' into sandersn/add-…
sandersnb45b5ba Merge branch 'disallow-uninitialised-property-override' into sandersn…
sandersn8d99856 Fix errors in testRunner
sandersnf400822 Add flag and turn off errors when on
sandersn1f68bea Structure of new emit is correct, fake content
sandersn6c35ac2 Basically right emit
sandersnfbeaf01 Fix one last unitialised property declaration
sandersna5b1d8f Haha no I missed another one
sandersn32a73b3 Fix whitespace back to CRLF
sandersn5028bfa Minor fix and code cleanup
sandersn8053e05 New test case
sandersn7fdb423 Fix bug in isInitializedProperty
sandersn18c622c Updates from design meeting.
sandersn8268f9a Update baselines
sandersn5eeb2b0 Object.defineProperty for methods too
sandersn5ea2bc1 Update slow baselines
sandersn088daa8 Improve error message
sandersne600ebe Update src/compiler/transformers/utilities.ts
sandersn6e3bf5c Add test of computed properties
sandersnba876cf Remove done TODO
sandersn6a1e24c Merge branch 'master' into sandersn/add-property-define-flag
sandersnFile filter
Filter by extension
Conversations
Failed to load comments.
Loading
Uh oh!
There was an error while loading.Please reload this page.
Jump to
Jump to file
Failed to load files.
Loading
Uh oh!
There was an error while loading.Please reload this page.
Diff view
Diff view
NextNext commit
Disallow property/accessor overrides
Unless the base property or accessor is abstract
- Loading branch information
Uh oh!
There was an error while loading.Please reload this page.
commitf76e01fbd98f3c847d5ee84e949c88b45893ee5c
There are no files selected for viewing
23 changes: 18 additions & 5 deletionssrc/compiler/checker.ts
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
9 changes: 9 additions & 0 deletionssrc/compiler/diagnosticMessages.json
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
1 change: 0 additions & 1 deletionsrc/compiler/utilities.ts
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
24 changes: 24 additions & 0 deletionstests/baselines/reference/accessorsOverrideProperty.errors.txt
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,24 @@ | ||
| tests/cases/conformance/classes/propertyMemberDeclarations/accessorsOverrideProperty.ts(5,9): error TS2611: Class 'A' defines instance member property 'p', but extended class 'B' defines it as instance member accessor. | ||
| tests/cases/conformance/classes/propertyMemberDeclarations/accessorsOverrideProperty.ts(12,9): error TS2611: Class 'C' defines instance member property 'p', but extended class 'D' defines it as instance member accessor. | ||
| ==== tests/cases/conformance/classes/propertyMemberDeclarations/accessorsOverrideProperty.ts (2 errors) ==== | ||
| class A { | ||
| p = 'yep' | ||
| } | ||
| class B extends A { | ||
| get p() { return 'oh no' } // error | ||
| ~ | ||
| !!! error TS2611: Class 'A' defines instance member property 'p', but extended class 'B' defines it as instance member accessor. | ||
| } | ||
| class C { | ||
| p = 101 | ||
| } | ||
| class D extends C { | ||
| _secret = 11 | ||
| get p() { return this._secret } // error | ||
| ~ | ||
| !!! error TS2611: Class 'C' defines instance member property 'p', but extended class 'D' defines it as instance member accessor. | ||
| set p(value) { this._secret = value } // error | ||
| } | ||
39 changes: 39 additions & 0 deletionstests/baselines/reference/accessorsOverrideProperty.js
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,39 @@ | ||
| //// [accessorsOverrideProperty.ts] | ||
| class A { | ||
| p = 'yep' | ||
| } | ||
| class B extends A { | ||
| get p() { return 'oh no' } // error | ||
| } | ||
| class C { | ||
| p = 101 | ||
| } | ||
| class D extends C { | ||
| _secret = 11 | ||
| get p() { return this._secret } // error | ||
| set p(value) { this._secret = value } // error | ||
| } | ||
| //// [accessorsOverrideProperty.js] | ||
| class A { | ||
| constructor() { | ||
| this.p = 'yep'; | ||
| } | ||
| } | ||
| class B extends A { | ||
| get p() { return 'oh no'; } // error | ||
| } | ||
| class C { | ||
| constructor() { | ||
| this.p = 101; | ||
| } | ||
| } | ||
| class D extends C { | ||
| constructor() { | ||
| super(...arguments); | ||
| this._secret = 11; | ||
| } | ||
| get p() { return this._secret; } // error | ||
| set p(value) { this._secret = value; } // error | ||
| } |
42 changes: 42 additions & 0 deletionstests/baselines/reference/accessorsOverrideProperty.symbols
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,42 @@ | ||
| === tests/cases/conformance/classes/propertyMemberDeclarations/accessorsOverrideProperty.ts === | ||
| class A { | ||
| >A : Symbol(A, Decl(accessorsOverrideProperty.ts, 0, 0)) | ||
| p = 'yep' | ||
| >p : Symbol(A.p, Decl(accessorsOverrideProperty.ts, 0, 9)) | ||
| } | ||
| class B extends A { | ||
| >B : Symbol(B, Decl(accessorsOverrideProperty.ts, 2, 1)) | ||
| >A : Symbol(A, Decl(accessorsOverrideProperty.ts, 0, 0)) | ||
| get p() { return 'oh no' } // error | ||
| >p : Symbol(B.p, Decl(accessorsOverrideProperty.ts, 3, 19)) | ||
| } | ||
| class C { | ||
| >C : Symbol(C, Decl(accessorsOverrideProperty.ts, 5, 1)) | ||
| p = 101 | ||
| >p : Symbol(C.p, Decl(accessorsOverrideProperty.ts, 6, 9)) | ||
| } | ||
| class D extends C { | ||
| >D : Symbol(D, Decl(accessorsOverrideProperty.ts, 8, 1)) | ||
| >C : Symbol(C, Decl(accessorsOverrideProperty.ts, 5, 1)) | ||
| _secret = 11 | ||
| >_secret : Symbol(D._secret, Decl(accessorsOverrideProperty.ts, 9, 19)) | ||
| get p() { return this._secret } // error | ||
| >p : Symbol(D.p, Decl(accessorsOverrideProperty.ts, 10, 17), Decl(accessorsOverrideProperty.ts, 11, 35)) | ||
| >this._secret : Symbol(D._secret, Decl(accessorsOverrideProperty.ts, 9, 19)) | ||
| >this : Symbol(D, Decl(accessorsOverrideProperty.ts, 8, 1)) | ||
| >_secret : Symbol(D._secret, Decl(accessorsOverrideProperty.ts, 9, 19)) | ||
| set p(value) { this._secret = value } // error | ||
| >p : Symbol(D.p, Decl(accessorsOverrideProperty.ts, 10, 17), Decl(accessorsOverrideProperty.ts, 11, 35)) | ||
| >value : Symbol(value, Decl(accessorsOverrideProperty.ts, 12, 10)) | ||
| >this._secret : Symbol(D._secret, Decl(accessorsOverrideProperty.ts, 9, 19)) | ||
| >this : Symbol(D, Decl(accessorsOverrideProperty.ts, 8, 1)) | ||
| >_secret : Symbol(D._secret, Decl(accessorsOverrideProperty.ts, 9, 19)) | ||
| >value : Symbol(value, Decl(accessorsOverrideProperty.ts, 12, 10)) | ||
| } | ||
47 changes: 47 additions & 0 deletionstests/baselines/reference/accessorsOverrideProperty.types
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,47 @@ | ||
| === tests/cases/conformance/classes/propertyMemberDeclarations/accessorsOverrideProperty.ts === | ||
| class A { | ||
| >A : A | ||
| p = 'yep' | ||
| >p : string | ||
| >'yep' : "yep" | ||
| } | ||
| class B extends A { | ||
| >B : B | ||
| >A : A | ||
| get p() { return 'oh no' } // error | ||
| >p : string | ||
| >'oh no' : "oh no" | ||
| } | ||
| class C { | ||
| >C : C | ||
| p = 101 | ||
| >p : number | ||
| >101 : 101 | ||
| } | ||
| class D extends C { | ||
| >D : D | ||
| >C : C | ||
| _secret = 11 | ||
| >_secret : number | ||
| >11 : 11 | ||
| get p() { return this._secret } // error | ||
| >p : number | ||
| >this._secret : number | ||
| >this : this | ||
| >_secret : number | ||
| set p(value) { this._secret = value } // error | ||
| >p : number | ||
| >value : number | ||
| >this._secret = value : number | ||
| >this._secret : number | ||
| >this : this | ||
| >_secret : number | ||
| >value : number | ||
| } | ||
18 changes: 18 additions & 0 deletionstests/baselines/reference/accessorsOverrideProperty2.errors.txt
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,18 @@ | ||
| tests/cases/conformance/classes/propertyMemberDeclarations/accessorsOverrideProperty2.ts(6,7): error TS2611: Class 'Base' defines instance member property 'x', but extended class 'Derived' defines it as instance member accessor. | ||
| ==== tests/cases/conformance/classes/propertyMemberDeclarations/accessorsOverrideProperty2.ts (1 errors) ==== | ||
| class Base { | ||
| x = 1; | ||
| } | ||
| class Derived extends Base { | ||
| get x() { return 2; } // should be an error | ||
| ~ | ||
| !!! error TS2611: Class 'Base' defines instance member property 'x', but extended class 'Derived' defines it as instance member accessor. | ||
| set x(value) { console.log(`x was set to ${value}`); } | ||
| } | ||
| const obj = new Derived(); // nothing printed | ||
| console.log(obj.x); // 1 | ||
26 changes: 26 additions & 0 deletionstests/baselines/reference/accessorsOverrideProperty2.js
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,26 @@ | ||
| //// [accessorsOverrideProperty2.ts] | ||
| class Base { | ||
| x = 1; | ||
| } | ||
| class Derived extends Base { | ||
| get x() { return 2; } // should be an error | ||
| set x(value) { console.log(`x was set to ${value}`); } | ||
| } | ||
| const obj = new Derived(); // nothing printed | ||
| console.log(obj.x); // 1 | ||
| //// [accessorsOverrideProperty2.js] | ||
| class Base { | ||
| constructor() { | ||
| this.x = 1; | ||
| } | ||
| } | ||
| class Derived extends Base { | ||
| get x() { return 2; } // should be an error | ||
| set x(value) { console.log(`x was set to ${value}`); } | ||
| } | ||
| const obj = new Derived(); // nothing printed | ||
| console.log(obj.x); // 1 |
36 changes: 36 additions & 0 deletionstests/baselines/reference/accessorsOverrideProperty2.symbols
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,36 @@ | ||
| === tests/cases/conformance/classes/propertyMemberDeclarations/accessorsOverrideProperty2.ts === | ||
| class Base { | ||
| >Base : Symbol(Base, Decl(accessorsOverrideProperty2.ts, 0, 0)) | ||
| x = 1; | ||
| >x : Symbol(Base.x, Decl(accessorsOverrideProperty2.ts, 0, 12)) | ||
| } | ||
| class Derived extends Base { | ||
| >Derived : Symbol(Derived, Decl(accessorsOverrideProperty2.ts, 2, 1)) | ||
| >Base : Symbol(Base, Decl(accessorsOverrideProperty2.ts, 0, 0)) | ||
| get x() { return 2; } // should be an error | ||
| >x : Symbol(Derived.x, Decl(accessorsOverrideProperty2.ts, 4, 28), Decl(accessorsOverrideProperty2.ts, 5, 23)) | ||
| set x(value) { console.log(`x was set to ${value}`); } | ||
| >x : Symbol(Derived.x, Decl(accessorsOverrideProperty2.ts, 4, 28), Decl(accessorsOverrideProperty2.ts, 5, 23)) | ||
| >value : Symbol(value, Decl(accessorsOverrideProperty2.ts, 6, 8)) | ||
| >console.log : Symbol(Console.log, Decl(lib.dom.d.ts, --, --)) | ||
| >console : Symbol(console, Decl(lib.dom.d.ts, --, --)) | ||
| >log : Symbol(Console.log, Decl(lib.dom.d.ts, --, --)) | ||
| >value : Symbol(value, Decl(accessorsOverrideProperty2.ts, 6, 8)) | ||
| } | ||
| const obj = new Derived(); // nothing printed | ||
| >obj : Symbol(obj, Decl(accessorsOverrideProperty2.ts, 9, 5)) | ||
| >Derived : Symbol(Derived, Decl(accessorsOverrideProperty2.ts, 2, 1)) | ||
| console.log(obj.x); // 1 | ||
| >console.log : Symbol(Console.log, Decl(lib.dom.d.ts, --, --)) | ||
| >console : Symbol(console, Decl(lib.dom.d.ts, --, --)) | ||
| >log : Symbol(Console.log, Decl(lib.dom.d.ts, --, --)) | ||
| >obj.x : Symbol(Derived.x, Decl(accessorsOverrideProperty2.ts, 4, 28), Decl(accessorsOverrideProperty2.ts, 5, 23)) | ||
| >obj : Symbol(obj, Decl(accessorsOverrideProperty2.ts, 9, 5)) | ||
| >x : Symbol(Derived.x, Decl(accessorsOverrideProperty2.ts, 4, 28), Decl(accessorsOverrideProperty2.ts, 5, 23)) | ||
42 changes: 42 additions & 0 deletionstests/baselines/reference/accessorsOverrideProperty2.types
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,42 @@ | ||
| === tests/cases/conformance/classes/propertyMemberDeclarations/accessorsOverrideProperty2.ts === | ||
| class Base { | ||
| >Base : Base | ||
| x = 1; | ||
| >x : number | ||
| >1 : 1 | ||
| } | ||
| class Derived extends Base { | ||
| >Derived : Derived | ||
| >Base : Base | ||
| get x() { return 2; } // should be an error | ||
| >x : number | ||
| >2 : 2 | ||
| set x(value) { console.log(`x was set to ${value}`); } | ||
| >x : number | ||
| >value : number | ||
| >console.log(`x was set to ${value}`) : void | ||
| >console.log : (message?: any, ...optionalParams: any[]) => void | ||
| >console : Console | ||
| >log : (message?: any, ...optionalParams: any[]) => void | ||
| >`x was set to ${value}` : string | ||
| >value : number | ||
| } | ||
| const obj = new Derived(); // nothing printed | ||
| >obj : Derived | ||
| >new Derived() : Derived | ||
| >Derived : typeof Derived | ||
| console.log(obj.x); // 1 | ||
| >console.log(obj.x) : void | ||
| >console.log : (message?: any, ...optionalParams: any[]) => void | ||
| >console : Console | ||
| >log : (message?: any, ...optionalParams: any[]) => void | ||
| >obj.x : number | ||
| >obj : Derived | ||
| >x : number | ||
15 changes: 15 additions & 0 deletionstests/baselines/reference/accessorsOverrideProperty3.errors.txt
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,15 @@ | ||
| tests/cases/conformance/classes/propertyMemberDeclarations/accessorsOverrideProperty3.ts(6,9): error TS2611: Class 'Animal' defines instance member property 'sound', but extended class 'Lion' defines it as instance member accessor. | ||
| ==== tests/cases/conformance/classes/propertyMemberDeclarations/accessorsOverrideProperty3.ts (1 errors) ==== | ||
| declare class Animal { | ||
| sound: string | ||
| } | ||
| class Lion extends Animal { | ||
| _sound = 'grrr' | ||
| get sound() { return this._sound } // error here | ||
| ~~~~~ | ||
| !!! error TS2611: Class 'Animal' defines instance member property 'sound', but extended class 'Lion' defines it as instance member accessor. | ||
| set sound(val) { this._sound = val } | ||
| } | ||
20 changes: 20 additions & 0 deletionstests/baselines/reference/accessorsOverrideProperty3.js
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,20 @@ | ||
| //// [accessorsOverrideProperty3.ts] | ||
| declare class Animal { | ||
| sound: string | ||
| } | ||
| class Lion extends Animal { | ||
| _sound = 'grrr' | ||
| get sound() { return this._sound } // error here | ||
| set sound(val) { this._sound = val } | ||
| } | ||
| //// [accessorsOverrideProperty3.js] | ||
| class Lion extends Animal { | ||
| constructor() { | ||
| super(...arguments); | ||
| this._sound = 'grrr'; | ||
| } | ||
| get sound() { return this._sound; } // error here | ||
| set sound(val) { this._sound = val; } | ||
| } |
Oops, something went wrong.
Uh oh!
There was an error while loading.Please reload this page.
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.