Debug on the current node

Property definitions

nitc $ NaiveInterpreter :: debug
	# Debug on the current node
	fun debug(message: String)
	do
		var node = current_node
		if node == null then
			print message
		else
			node.debug(message)
		end
	end
src/interpreter/naive_interpreter.nit:443,2--452,4