(code: string)
| 58 | * @param code - The code to insert. |
| 59 | */ |
| 60 | export function insert(code: string): RawCodeFragment { |
| 61 | return { |
| 62 | before: '', |
| 63 | after: code, |
| 64 | }; |
| 65 | } |
| 66 | |
| 67 | /** |
| 68 | * Create a code fragment that represents a change from one piece of code to |
no outgoing calls
no test coverage detected