microsoft / microsoft/TypeScript
Improve Type guards to correctly work with for-of loops
Nadie ha tomado este issue todavía.
- Lenguaje dominante
- Go
- Estrellas
- 111k
- Forks
- 14.3k
- Merge medio
- 1 d 19 h
- PR fusionados (30 d)
- 117
Descripción
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.
Guía de contribución
Primeros pasos
- Lee el issue completo y luego la guía de contribución del proyecto.
- Comenta en el issue que vas a ocuparte — evita que dos personas hagan lo mismo.
- Haz un fork del repositorio y trabaja en una rama.
- Abre un pull request que haga referencia al número del issue.
Línea de trabajo
No se mencionan archivos fuente ni pruebas. Empieza reproduciendo los ejemplos de TypeScript del issue y siguiendo cómo el estrechamiento del flujo de control gestiona las variables comprobadas mediante un bucle for-of. Se considera terminado cuando los casos de estrechamiento válidos compilan, mientras que el caso mostrado basado en any no se vuelve unsound.
Escrito por el modelo de indexación a partir del texto del issue.
Evaluación
- Stack tecnológico
- typescript
- Área
- compilers
- Tipo de issue
- Nueva funcionalidad
- Dificultad
- 5/5
- Tiempo estimado
- Más de una semana
- Estado de actividad
- Estancado
- Claridad
- Bastante claro
- Aptitud para principiantes
- 30/100