Web Inspector recently gained support for inspecting private members of an object, however it appears that static members didn't make the cut. Take the following code as an example: ``` PA = {}; PA.PublicClass = class PublicClass { static #PrivateInnerClass = class PrivateInnerClass { /* impl */ } } ``` If you log `PA.PublicClass` to the console, you can't see that `#PrivateInnerClass` exists. If I get rid of the `static` part and then log `new PA.PublicClass`, I can see that the created object has a `#PrivateInnerClass` defined.
<rdar://problem/116613089>
19616.1.27.211.1
Also reproduces in STP 180.