Is the implicit receiver sys?

By default, the implicit receiver is self. But when there is not method for self, sys is used as a fall-back. Is this case this flag is set to true.

Property definitions

nitc :: typing $ AImplicitSelfExpr :: is_sys
	# Is the implicit receiver `sys`?
	#
	# By default, the implicit receiver is `self`.
	# But when there is not method for `self`, `sys` is used as a fall-back.
	# Is this case this flag is set to `true`.
	var is_sys = false
src/semantize/typing.nit:1940,2--1945,19