microsoft / microsoft/TypeScript-TmLanguage

Highlighting breaks when casting a variable called `type`

未关闭
#992 0 条评论 0 个 reaction 已指派 0 人 在 GitHub 查看

还没有人认领这个 Issue。

主要语言
TypeScript
星标
471
派生
149
PR 合并指标
30 天内没有已合并 PR

描述

JavaScript and TypeScript Nightly version: v5.3.20230923

Hi there, an issue occurs when both using <> and as casting.

Code

Using <> casting with newline after <:

export function main() {
  const type = ``;
  const variable = <
  'dog' | 'cat'>type;

  return;
}

The remaining lines Highlights weirdly, or even stops:

current behavior expected behavior
image image

Using as casting with already declared variable:

export function main() {
  const type = ``;
  let variable = ``;
  variable = type as 'dog' | 'cat';
  return;
}
current behavior expected behavior
image image

贡献指南

这个仓库没有索引到贡献指南

从这里开始

  1. 先读完整个 Issue,再读项目的贡献指南。
  2. 在 Issue 下留言说明你要接手 —— 这能避免两个人做同样的事。
  3. Fork 仓库,在一个分支上完成修改。
  4. 提交 Pull Request,并在描述里引用这个 Issue 编号。

调研方向

在 VS Code 高亮环境中复现两个 TypeScript 示例,对比 issue 中显示的当前行为和预期行为。然后检查仓库的 TypeScript TextMate 语法规则中关于尖括号转换和 as 转换的规则,并验证在这两种形式之后高亮仍能正确继续,包括变量名为 type 的情况。

由索引模型根据 Issue 内容生成。

评估

技术栈
typescript
领域
tooling
Issue 类型
缺陷
难度
3/5
预计耗时
1-2 天
活跃度
停滞
描述清晰度
基本清楚
新手友好度
42/100

把新 issue 发到你的邮箱

精选适合新手参与的 GitHub issue 摘要。