Return the variable read (if any)

Used to perform adaptive typing

Property definitions

nitc :: typing $ AExpr :: its_variable
	# Return the variable read (if any)
	# Used to perform adaptive typing
	fun its_variable: nullable Variable do return null
src/semantize/typing.nit:1005,2--1007,51

nitc :: typing $ ASelfExpr :: its_variable
	redef var its_variable: nullable Variable
src/semantize/typing.nit:1927,2--42

nitc :: typing $ AVarExpr :: its_variable
	redef fun its_variable do return self.variable
src/semantize/typing.nit:1118,2--47