外觀
檢查 new 表達式前面是否缺少 throw 關鍵字。
new
throw
function foo() { throw Error(); } const foo = () => { new Error(); };