Property definitions

nitc $ VmFrame :: defaultinit
# Implementation of a Frame with numbered variables
class VmFrame
	super Frame

	# Contains the value of Variables (which are numbered)
	var variables: Array[Instance] = new Array[Instance]
end
src/vm/variables_numbering.nit:74,1--80,3