Pretty print the outsets of this analysis.

Mainly used for debug and testing.

Property definitions

nitc $ StaticAnalysis :: pretty_print
	# Pretty print the outsets of this analysis.
	#
	# Mainly used for debug and testing.
	fun pretty_print is abstract
src/saf/saf_base.nit:77,2--80,29

nitc $ ReachingDefsAnalysis :: pretty_print
	redef fun pretty_print do
		for node, outset in outsets do
			if outset.is_empty then continue
			var values = outset.to_a
			default_comparator.sort(values)
			print "{node.location.line_end}: {values.join(", ")} out of {node.class_name}"
		end
	end
src/saf/reaching_defs.nit:59,2--66,4