为什么nodejs在课堂上使用asynchronous时给我错误?

class Controller { async getUser(username) { return User.find({username}); } } module.exports = new Controller(); 

getUser是意外标识符

为什么,它在巴贝尔工作良好。