(lines, key)
| 259 | |
| 260 | |
| 261 | def get_task_ios(lines, key): |
| 262 | for i in range(0, len(lines)): |
| 263 | if key in lines[i]: |
| 264 | line = lines[i] |
| 265 | line = line.replace("const ", "") |
| 266 | line = line[line.find("(") + 1: line.find(")")] |
| 267 | tsk_ios = line.split(', ') |
| 268 | return tsk_ios |
| 269 | return [] |
| 270 | |
| 271 | |
| 272 | def get_output_structures(lines, key): |
no test coverage detected