Return a new uninitialized local runtime_variable

Property definitions

nitc $ AbstractCompilerVisitor :: new_var
	# Return a new uninitialized local runtime_variable
	fun new_var(mtype: MType): RuntimeVariable
	do
		mtype = self.anchor(mtype)
		var name = self.get_name("var")
		var res = new RuntimeVariable(name, mtype, mtype)
		self.add_decl("{mtype.ctype} {name} /* : {mtype} */;")
		return res
	end
src/compiler/abstract_compiler.nit:1630,2--1638,4