Generate a float value

FIXME pass a Float, not a string

Property definitions

nitc $ JavaCompilerVisitor :: float_instance
	# Generate a float value
	#
	# FIXME pass a Float, not a string
	fun float_instance(value: String): RuntimeVariable do
		var t = compiler.mainmodule.float_type
		return new RuntimeVariable(value.to_s, t, t)
	end
src/compiler/java_compiler.nit:916,2--922,4