Skip to content

Commit 52f533d

Browse files
committed
make prettier happy
1 parent 7f3d99e commit 52f533d

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

packages/babel-parser/src/parser/expression.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -706,7 +706,8 @@ export default class ExpressionParser extends LValParser {
706706
const computed = this.eat(tt.bracketL);
707707
node.object = base;
708708
node.computed = computed;
709-
const privateName = !computed && this.match(tt.privateName) && this.state.value;
709+
const privateName =
710+
!computed && this.match(tt.privateName) && this.state.value;
710711
const property = computed
711712
? this.parseExpression()
712713
: privateName

0 commit comments

Comments
 (0)