外观
检查 throw 关键字是否丢失在 new 表达式的前面。
throw
new
function foo() { throw Error(); } const foo = () => { new Error(); };