(modifier: (serialized: string) => string, sl: Sourcelike)
| 111 | } |
| 112 | |
| 113 | export function modifySource(modifier: (serialized: string) => string, sl: Sourcelike): Sourcelike { |
| 114 | return { |
| 115 | kind: "modified", |
| 116 | modifier, |
| 117 | source: sourcelikeToSource(sl) |
| 118 | }; |
| 119 | } |
| 120 | |
| 121 | export interface Location { |
| 122 | // Both of these are zero-based. |
no test coverage detected
searching dependent graphs…