TypeScript null检查的const属性错误地解析了,

smdncfj3  于 9个月前  发布在  TypeScript
关注(0)|答案(3)|浏览(80)

TypeScript版本: 3.5.3(也尝试过@next)
搜索词: const symbol property "not assignable to type"
代码

  1. /*
  2. * For reasons of how the JSON is converted, I'm using Symbols to hide certain properties.
  3. */
  4. class Server {
  5. public auth: string | null = null;
  6. }
  7. /** `tsc` complains about this[AUTH_PROP] even though it must always be a string inside the `if()` */
  8. const AUTH_PROP = Symbol();
  9. class TestSymbol {
  10. private readonly [AUTH_PROP]: string | null = null;
  11. public readonly server: Server | null = null;
  12. public get auth(): string | undefined {
  13. if (this[AUTH_PROP] !== null) {
  14. return this[AUTH_PROP];
  15. }
  16. if (this.server && this.server.auth) {
  17. return this.server.auth;
  18. }
  19. return undefined;
  20. }
  21. }
  22. /** same thing with a string literal and it works */
  23. class TestNoSymbol {
  24. private readonly _auth: string | null = null;
  25. public readonly server: Server | null = null;
  26. public get auth(): string | undefined {
  27. if (this['_auth'] !== null) {
  28. return this['_auth'];
  29. }
  30. if (this.server && this.server.auth) {
  31. return this.server.auth;
  32. }
  33. return undefined;
  34. }
  35. }
  36. /** same thing with a const string and it fails */
  37. const AUTH_PROP_S = '_auth';
  38. class TestConstString {
  39. private readonly [AUTH_PROP_S]: string | null = null;
  40. public readonly server: Server | null = null;
  41. public get auth(): string | undefined {
  42. if (this[AUTH_PROP_S] !== null) {
  43. return this[AUTH_PROP_S];
  44. }
  45. if (this.server && this.server.auth) {
  46. return this.server.auth;
  47. }
  48. return undefined;
  49. }
  50. }

预期行为:

所有这三个版本都应该没问题,不会出现tsc错误。const的值永远不会改变,所以它必须始终是string语句内的if()

实际行为:

  1. Type 'string | null' is not assignable to type 'string | undefined'.
  2. Type 'null' is not assignable to type 'string | undefined'.

Playground链接:https://is.gd/V7Jai9
相关问题: 不确定

kb5ga3dv

kb5ga3dv1#

在不使用URL缩短器的情况下进行Playground。我猜是因为缩小是在语法上完成的,而this[constVar]不是缩小的候选者?

qqrboqgw

qqrboqgw2#

请问目前通过类似这种表达式缩小范围的状态如何?

bybem2ql

bybem2ql3#

至少对于字符串,这是对计算属性的控制流的有意限制。对于符号来说可能也是一样的。尽管如此,我们可能能够对具有字面类型的计算属性稍微聪明一些,而不是实际的字面量。我不认为检测字面类型与仅检测字面量之间会有很大的复杂性增加。

相关问题