Example is info extracted from an example file
| 107 | |
| 108 | // Example is info extracted from an example file |
| 109 | type Example struct { |
| 110 | ID, Name string |
| 111 | GoCode, GoCodeHash, URLHash string |
| 112 | Segs [][]*Seg |
| 113 | PrevExample *Example |
| 114 | NextExample *Example |
| 115 | } |
| 116 | |
| 117 | func parseHashFile(sourcePath string) (string, string) { |
| 118 | lines := readLines(sourcePath) |
nothing calls this directly
no outgoing calls
no test coverage detected