We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7f3d99e commit 52f533dCopy full SHA for 52f533d
1 file changed
packages/babel-parser/src/parser/expression.js
@@ -706,7 +706,8 @@ export default class ExpressionParser extends LValParser {
706
const computed = this.eat(tt.bracketL);
707
node.object = base;
708
node.computed = computed;
709
- const privateName = !computed && this.match(tt.privateName) && this.state.value;
+ const privateName =
710
+ !computed && this.match(tt.privateName) && this.state.value;
711
const property = computed
712
? this.parseExpression()
713
: privateName
0 commit comments