Input:
export default Controller.extend({
async save() {
await this.something;
},
});
Expected Output:
export default class MyController extends Controller {
async save() {
await this.something;
}
}
Actual Output:
export default class MyController extends Controller {
save() {
await this.something;
}
}
Input:
Expected Output:
Actual Output: