This repository was archived by the owner on Jan 19, 2019. It is now read-only.
This repository was archived by the owner on Jan 19, 2019. It is now read-only.
Exponentiation tokens are not supported #280
Closed
Description
What version of TypeScript are you using?
2.3.2
What version of typescript-eslint-parser
are you using?
master
What code were you trying to parse?
var x = 2 ** 2;
x **= 2;
What did you expect to happen?
operator
on BinaryExpression
should be **
and **=
respectively.
What happened?
operator
on BinaryExpression
is undefined
.