Skip to content

Commit

Permalink
Fix code style
Browse files Browse the repository at this point in the history
  • Loading branch information
lukastaegert committed Nov 17, 2017
1 parent 923b6fd commit 172d72a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ast/nodes/SequenceExpression.js
Expand Up @@ -35,7 +35,7 @@ export default class SequenceExpression extends Node {
last.render( code, es );

if ( this.parent.type === 'CallExpression' && last.type === 'MemberExpression' && this.expressions.length > 1 ) {
this.expressions[0].included = true
this.expressions[0].included = true;
}

const included = this.expressions.slice( 0, this.expressions.length - 1 ).filter( expression => expression.included );
Expand Down

0 comments on commit 172d72a

Please sign in to comment.