prettier/tests/new_expression/with-member-expression.js

11 lines
217 B
JavaScript

function functionName() {
// indent to make the line break
if (true) {
this._aVeryLongVariableNameToForceLineBreak = new this.Promise(
(resolve, reject) => {
// do something
}
);
}
}