Microsoft/TypeScript

TS1518 depends on operand order in negated v-mode class unions

开放

#63,718 创建于 2026年8月4日

 (1 条评论) (0 个反应) (0 位负责人)TypeScript (13,395 个派生)batch import
BugDomain: ParserHelp Wanted

仓库指标

星标
 (108,860 个星标)
PR 合并指标
 (平均合并 6天 17小时) (30 天内合并 9 个 PR)

描述

🔎 Search Terms

TS1518, RegExp v flag, MayContainStrings, negated character class, ClassUnion, operand order, q{}

🕗 Version & Regression Information

Occurs in every version tested: 7.0.2 and 7.1.0-dev.20260804.1 (nightly). I searched open and closed issues.

💻 Code

const a = /[^\q{xy}b]/v; // TS1518
const b = /[^b\q{xy}]/v; // no error

🙁 Actual behavior

TS1518 only considers the first union operand. The second pattern is accepted but is invalid JavaScript.

🙂 Expected behavior

Both patterns report TS1518: MayContainStrings is true when any union operand may match a string.

贡献者指南