(comments []Comment)
| 7 | ) |
| 8 | |
| 9 | func toJSON(comments []Comment) string { |
| 10 | j, _ := json.MarshalIndent(comments, "", " ") |
| 11 | return string(j) |
| 12 | } |
| 13 | |
| 14 | func cStyle(s string) int { |
| 15 | return computePadding(s, []string{"/*", "//"}) |
no outgoing calls
searching dependent graphs…