emitRouteMarker outputs structured JSON for matched routes.
(matches []subsystemRouteMatch)
| 1041 | |
| 1042 | // emitRouteMarker outputs structured JSON for matched routes. |
| 1043 | func emitRouteMarker(matches []subsystemRouteMatch) { |
| 1044 | data, err := json.Marshal(matches) |
| 1045 | if err != nil { |
| 1046 | return |
| 1047 | } |
| 1048 | fmt.Printf("<!-- codemap:routes %s -->\n", string(data)) |
| 1049 | } |
| 1050 | |
| 1051 | // showSessionProgress shows files edited so far in this session |
| 1052 | func showSessionProgress(root string) { |
no outgoing calls
no test coverage detected