Skip to content

Commit

Permalink
fix(typescript-estree): fix invalid parsing error when use update exp…
Browse files Browse the repository at this point in the history
…ression on non-null assertion (#8202)
  • Loading branch information
yeonjuan committed Jan 6, 2024
1 parent d4e2ead commit 4fdce89
Show file tree
Hide file tree
Showing 8 changed files with 417 additions and 54 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,6 @@ class F {
(<number>this.#a)++;
(this.#a satisfies number)++;
(this.#a as number)++;
this.#a!++;
}
}

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 4fdce89

Please sign in to comment.