Most of my unit tests test an interface's public members, but sometimes I want to test a private or protected method.
To do this today, I have to make the method public and add a JSDoc annotation ("Do not use!!!").
It would be nice to have a compiler flag (--suppressControlledMemberAccessErrors?) that I can use when compiling my code for unit testing, so I don't have to do gymnastics to test access controlled members.