Is self a safe call (with x?.foo)?

If so and the receiver is null, then the arguments won't be evaluated and the call skipped (replaced with null).

Property definitions

nitc :: typing $ ASendExpr :: is_safe=
	# Is self a safe call (with `x?.foo`)?
	# If so and the receiver is null, then the arguments won't be evaluated
	# and the call skipped (replaced with null).
	var is_safe: Bool = false
src/semantize/typing.nit:1954,2--1957,26