Skip to content
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

Can't Narrow Destructured Tuple Union #56973

Closed
LandonSchropp opened this issue Jan 7, 2024 · 4 comments Β· Fixed by #56908
Closed

Can't Narrow Destructured Tuple Union #56973

LandonSchropp opened this issue Jan 7, 2024 · 4 comments Β· Fixed by #56908
Labels
Duplicate An existing issue was already created

Comments

@LandonSchropp
Copy link

πŸ”Ž Search Terms

Narrowing, Union, Destructuring, Tuple

πŸ•— Version & Regression Information

  • This is the behavior in every version I tried, and I reviewed the FAQ for entries about unions, instanceof and tuples.

⏯ Playground Link

https://www.typescriptlang.org/play?ts=5.0.4#code/MYewdgzgLgBAagQQDIFUCiBlGBeGBtAIgEMBGAgGhmICYKqiBmOggIzMtdo5aY+HarAugpgF0YRCDFCQoAbgBQCgPTKYABQA2AU0naYASwDmYEACd9UABb7TYALQRtkA8CKaYYIlACuFmCAAZjDW2k4hAJ4ADmEAdDAAKlYGUikSMBAGALZRmgaBBtoAJjAAbtpmmeABwVkRMBbuMD7hbk6xClDR+nDuPvq4ABRdMUHwyOgYAJR4YD5ZLBWiiiP6CWZEkIHmWQBiPmDAUAbVQ6V9YQBc8Bd4olM4AHw3mv13K92JG1s7ACLaBTABmOp3wACVtEY0AAPKLiAA++HWmwg2zMewORxOYGWSlUiWSUiKIDCYAA5LAAO7mADWlBYPlgTm0WSkeRp+mBGSsIB8miKHUCmJBYBgFTM5hhRByOkGRQBBiBIuuyJ+6P+gOB2KmKu+qJ2+0OIpgAG8FDAYDpYHgZEUteBxLh5ZqRYpzYZgoNbfbRYroJtgNoxhCobCHmaLRaLL4zKLBg9sM9EKhMLECpooBVBoNzq9tAnnt6RbFM9AcxcplNFBaAL5KKPaGOiovYxR1lRqJJpalmGkQSibEppdxZEDQEI2DLSyzJMBGBRCo3YjI+YCBiAQKUy7SDG3gO0i0S6lForIaxU+nVfE8G4XLiMemBe-c+wyyANB4IhmFRcPuhtNk+BbjCmGBpgYGZZuWebAS24AlmEUDQf0lbVjA7YAX4zYvq6Cg1kAA

πŸ’» Code

const VALUES = ["a1", "a2", "a3", "b1", "b2", "b3", "c1", "c2", "c3"] as const;

// Please ignore the non-sensical nature of these types. This is a simplified version of my real use case.
type Value = (typeof VALUES)[number];
type TransformFunction = (values: Value[]) => Value[];
type TransformDefinition = [RegExp] | [TransformFunction];

// This doesn't work, but seems like it should.
function errorExample(definition: TransformDefinition): TransformFunction {
  let [condition] = definition;

  if (condition instanceof RegExp) {
    return () => VALUES.filter((value) => condition.test(value));
  }

  return condition;
}

// This works, and is almost the same thing
function successExample([condition]: TransformDefinition): TransformFunction {
  if (condition instanceof RegExp) {
    return () => VALUES.filter((value) => condition.test(value));
  }

  return condition;
}

πŸ™ Actual behavior

In the first example function, I get this error:

Property 'test' does not exist on type 'RegExp | TransformFunction'.
  Property 'test' does not exist on type 'TransformFunction'.

πŸ™‚ Expected behavior

Both examples should compile without an error

Additional information about the issue

My real use case is a bit more complex, and involves tuples with multiple values.

@MartinJohns
Copy link
Contributor

Another duplicate of #9998.

@fatcerberus
Copy link

Note that errorExample works if you use const instead of let.
This case might be fixed by #56908

@ahejlsberg ahejlsberg added the Duplicate An existing issue was already created label Jan 8, 2024
@ahejlsberg
Copy link
Member

This is indeed fixed by #56908 and is a duplicate of the many issues listed in that PR.

@LandonSchropp
Copy link
Author

Thank you!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Duplicate An existing issue was already created
Projects
None yet
Development

Successfully merging a pull request may close this issue.

4 participants