with-member-expression.js 217 B

1234567891011
  1. function functionName() {
  2. // indent to make the line break
  3. if (true) {
  4. this._aVeryLongVariableNameToForceLineBreak = new this.Promise(
  5. (resolve, reject) => {
  6. // do something
  7. }
  8. );
  9. }
  10. }