(code editErrorCode, detail string)
| 1284 | out := make([]string, 0, len(paths)) |
| 1285 | for _, path := range paths { |
| 1286 | if ok, _ := checkAllowedReadRoots(path, readRoots); ok { |
| 1287 | continue |
| 1288 | } |
| 1289 | if ok, _ := checkAllowedWriteRoots(path, writeRoots); ok { |
| 1290 | continue |
| 1291 | } |
| 1292 | out = append(out, path) |
| 1293 | } |
| 1294 | return out |
no outgoing calls
no test coverage detected