Returns the first argument (the receiver) of a frame.

REQUIRE: arguments.length >= 1

Property definitions

nitc $ StaticFrame :: selfvar
	# Returns the first argument (the receiver) of a frame.
	# REQUIRE: arguments.length >= 1
	fun selfvar: RuntimeVariable
	do
		assert arguments.length >= 1
		return arguments.first
	end
src/compiler/abstract_compiler.nit:2424,2--2430,4