Deindentation causes issues with destructuring

Fails:

class Foo {
  constructor ( options ) {
    const {
      a,
      b
    } = options;
  }
}