Function
getAttachConfiguration
(extraConfiguration?: Record<string, any>)
Source from the content-addressed store, hash-verified
| 1178 | } |
| 1179 | |
| 1180 | export async function getAttachConfiguration(extraConfiguration?: Record<string, any>): Promise<vs.DebugConfiguration & DartLaunchArgs | undefined | null> { |
| 1181 | const attachConfig = Object.assign({}, { |
| 1182 | program: undefined, |
| 1183 | request: "attach", |
| 1184 | }, extraConfiguration); |
| 1185 | return await getResolvedDebugConfiguration(attachConfig); |
| 1186 | } |
| 1187 | |
| 1188 | export async function writeBrokenDartCodeIntoFileForTest(file: vs.Uri): Promise<void> { |
| 1189 | const nextAnalysis = privateApi.nextAnalysis(); |