(node, i)
| 120 | |
| 121 | // Transform lines to line objects with type information |
| 122 | function _temp(node, i) { |
| 123 | return <Box key={i}>{node}</Box>; |
| 124 | } |
| 125 | export function transformLinesToObjects(lines: string[]): LineObject[] { |
| 126 | return lines.map(code => { |
| 127 | if (code.startsWith('+')) { |
nothing calls this directly
no outgoing calls
no test coverage detected