Given `class B extends A`, where does the static-side inheritance link point, and what does that imply for a static method called on the subclass?
class A { static make() { return 'A.make'; } }
class B extends A {}
console.log(B.make(), Object.getPrototypeOf(B) === A);