Reports possible NullPointerException during chain methods or properties call.

Example:


  domain?.getZone().getName()

After the quick-fix is applied:


  domain?.getZone()?.getName()