Builds the static frame for current runtime method

Step 2

Property definitions

nitc $ AbstractRuntimeFunction :: build_frame
	# Builds the static frame for current runtime method
	# Step 2
	protected fun build_frame(v: VISITOR, arguments: Array[RuntimeVariable]): StaticFrame
	do
		return new StaticFrame(v, mmethoddef, recv_mtype.as(MClassType), arguments)
	end
src/compiler/abstract_compiler.nit:2140,2--2145,4

nitc $ SeparateRuntimeFunction :: build_frame
	redef fun build_frame(v, arguments)
	do
		var recv = mmethoddef.mclassdef.bound_mtype
		return new StaticFrame(v, mmethoddef, recv, arguments)
	end
src/compiler/separate_compiler.nit:2543,2--2547,4