-
Notifications
You must be signed in to change notification settings - Fork 12.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #12312 from Microsoft/widen-literal-types-of-param…
…eter-properties Widen literal types of parameter properties
- Loading branch information
Showing
5 changed files
with
48 additions
and
2 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
15 changes: 15 additions & 0 deletions
15
tests/baselines/reference/literalTypesWidenInParameterPosition.errors.txt
This file contains 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/types/literal/literalTypesWidenInParameterPosition.ts(4,9): error TS2322: Type '5' is not assignable to type '1'. | ||
|
||
|
||
==== tests/cases/conformance/types/literal/literalTypesWidenInParameterPosition.ts (1 errors) ==== | ||
class D { | ||
readonly noWiden = 1 | ||
constructor(readonly widen = 2) { | ||
this.noWiden = 5; // error | ||
~~~~~~~~~~~~ | ||
!!! error TS2322: Type '5' is not assignable to type '1'. | ||
this.widen = 6; // ok | ||
} | ||
} | ||
new D(7); // ok | ||
|
23 changes: 23 additions & 0 deletions
23
tests/baselines/reference/literalTypesWidenInParameterPosition.js
This file contains 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,23 @@ | ||
//// [literalTypesWidenInParameterPosition.ts] | ||
class D { | ||
readonly noWiden = 1 | ||
constructor(readonly widen = 2) { | ||
this.noWiden = 5; // error | ||
this.widen = 6; // ok | ||
} | ||
} | ||
new D(7); // ok | ||
|
||
|
||
//// [literalTypesWidenInParameterPosition.js] | ||
var D = (function () { | ||
function D(widen) { | ||
if (widen === void 0) { widen = 2; } | ||
this.widen = widen; | ||
this.noWiden = 1; | ||
this.noWiden = 5; // error | ||
this.widen = 6; // ok | ||
} | ||
return D; | ||
}()); | ||
new D(7); // ok |
8 changes: 8 additions & 0 deletions
8
tests/cases/conformance/types/literal/literalTypesWidenInParameterPosition.ts
This file contains 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,8 @@ | ||
class D { | ||
readonly noWiden = 1 | ||
constructor(readonly widen = 2) { | ||
this.noWiden = 5; // error | ||
this.widen = 6; // ok | ||
} | ||
} | ||
new D(7); // ok |