microsoft / microsoft/TypeScript
Improve Type guards to correctly work with for-of loops
Dieses Issue hat noch niemand übernommen.
- Vorherrschende Sprache
- Go
- Sterne
- 111k
- Forks
- 14.3k
- Ø Merge
- 2 T. 4 Std.
- Gemergte PRs (30 T.)
- 132
Beschreibung
Search Terms
for-of, Type Guard
Suggestion
At the moment a paradigm of call-Parameter-Testing I apply works well in case of one parameter, but if I want to shorten the testing of multiple parameters using a for-of loop the type assertion fails.
Use Cases
Correct type guarding of multiple parameters which are supposed to be the same type but to be handled differently
Examples
type generalObj<T> = {
value: T,
};
type numObj = generalObj<number>
const isNumObj = (testObj: generalObj<any>): testObj is numObj => {
//some logic here...
return true;
}
const numConsumer = (param: numObj) => param;
const shouldWork = (shouldBeNumObj: generalObj<number | string>) => {
for (const c of [shouldBeNumObj]) {
if (!isNumObj(c)) {
return console.error('no numObj')
}
}
// error here despite the right type ensured
numConsumer(shouldBeNumObj);
}
const doesWork = (shouldBeNumObj: generalObj<number | string>) => {
if (!isNumObj(shouldBeNumObj)) {
return console.error('no numObj')
}
numConsumer(shouldBeNumObj);
}
const shouldWork2 = (shouldBeNumObj: Array<generalObj<number | string>>) => {
for (const c of shouldBeNumObj) {
if (!isNumObj(c)) {
return console.error('no numObj')
}
}
numConsumer(shouldBeNumObj[0]);
}
const baseTypeNumConsumer = (param: number) => param;
// curtesy of @nmain
const shouldWork3 = (shouldBeNum: string | number) => {
for (const v of [shouldBeNum]) {
if (typeof v !== "number") {
return;
}
}
baseTypeNumConsumer(shouldBeNum); // compiler error, but should be valid
}
const stringConsumer = (param: generalObj<string>) => param;
const couldBreakCode = (anyObjS: Array<generalObj<any>>) => {
for (const c of anyObjS) {
if (!isNumObj(c)) {
return console.error('no numObj')
}
}
stringConsumer(anyObjS[0])
}
const becauseThisFails = (anyObj: generalObj<any>) => {
if (!isNumObj(anyObj)) {
return console.error('no numObj')
}
stringConsumer(anyObj);
}
Checklist
My suggestion meets these guidelines:
- This wouldn't be a breaking change in existing TypeScript/JavaScript code
- Could break compilation of already error-prone code where Type testing was disabled with
any
- Could break compilation of already error-prone code where Type testing was disabled with
- This wouldn't change the runtime behavior of existing JavaScript code
- This could be implemented without emitting different JS based on the types of the expressions
- This isn't a runtime feature (e.g. library functionality, non-ECMAScript syntax with JavaScript output, etc.)
- This feature would agree with the rest of TypeScript's Design Goals.
Beitragsleitfaden
Erste Schritte
- Lies das ganze Issue und danach den Beitragsleitfaden des Projekts.
- Schreib ins Issue, dass du es übernimmst — das erspart doppelte Arbeit.
- Forke das Repository und arbeite in einem Branch.
- Öffne einen Pull Request, der die Issue-Nummer nennt.
Rechercherichtung
Es werden keine Quelldateien oder Tests genannt. Beginne damit, die TypeScript-Beispiele im Issue zu reproduzieren und nachzuverfolgen, wie Control-Flow-Narrowing Variablen behandelt, die durch eine for-of-Schleife getestet werden. Als erledigt gilt die Aufgabe, wenn die gültigen Narrowing-Fälle kompiliert werden, während der gezeigte any-basierte Fall nicht unsound wird.
Vom Indexierungsmodell aus dem Issue-Text verfasst.
Bewertung
- Tech-Stack
- typescript
- Bereich
- compilers
- Issue-Typ
- Feature
- Schwierigkeit
- 5/5
- Geschätzter Aufwand
- Über eine Woche
- Aktivitätsstatus
- Veraltet
- Klarheit
- Größtenteils klar
- Anfängerfreundlichkeit
- 30/100