外观
Setter 不能返回值。
虽然从 setter 返回值不会产生错误,但该返回值会被忽略。因此,从 setter 返回值要么是不必要的,要么是可能的错误,因为无法使用返回值。
class URL { set origin() { return true; } }