Return a new local runtime_variable initialized with the C expression cexpr.

Property definitions

nitc $ AbstractCompilerVisitor :: new_expr
	# Return a new local runtime_variable initialized with the C expression `cexpr`.
	fun new_expr(cexpr: String, mtype: MType): RuntimeVariable
	do
		var res = new_var(mtype)
		self.add("{res} = {cexpr};")
		return res
	end
src/compiler/abstract_compiler.nit:1907,2--1913,4