| 1 | package CodeGeneration; |
| 2 | |
| 3 | public class LabelGenerator { |
| 4 | private int count = 0; |
| 5 | |
| 6 | public String getLabel(String type) { |
| 7 | count++; |
| 8 | return "label_" + type + "_"+ count; |
| 9 | } |
| 10 | } |
nothing calls this directly
no outgoing calls
no test coverage detected