``` b = new function() { this.c = 'a'; } ``` converts to ``` b = new () => { this.c = 'a'; } ``` Would not this one ``` b = new class() { constructor() { this.c = 'a'; } } ``` be better?