Microsoft/TypeScript

Parsing issue for call expression with type arguments following left-shift

開放

#37,760 建立於 2020年4月2日

 (1 則留言) (0 個反應) (0 位負責人)TypeScript (13,395 個分叉)batch import
BugDomain: ParserHelp Wanted

倉庫指標

星標
 (108,860 顆星)
PR 合併指標
 (PR 指標待抓取)

描述

TypeScript Version: 3.8.3

Search Terms: left shift, type parameter

Expected behavior: Syntax highlighting stays intact.

Actual behavior: Syntax highlighting breaks, even with ts-ignore.

Code

function alignof<T>(): number {
  return 1;
}

// works
function foo<T>(): number {
  return 1 >> alignof<T[]>();
}

// breaks
function bar<T>(): number {
  return 1 << alignof<T[]>();
}

// still breaks, does not ignore
function baz<T>(): number {
  // @ts-ignore
  return 1 << alignof<T[]>();
}

Looks like a rescan issue on potentially ambiguous < tokens, attempting to interpret as 1 < <type>.

Playground Link: Provided

貢獻者指南