nitc :: StaticAnalysis :: pretty_print
Mainly used for debug and testing.
# Pretty print the outsets of this analysis. # # Mainly used for debug and testing. fun pretty_print is abstract
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