(id: VmServiceExtension, expected: unknown, dc: DartDebugClient)
| 384 | } |
| 385 | |
| 386 | export async function ensureServiceExtensionValue(id: VmServiceExtension, expected: unknown, dc: DartDebugClient) { |
| 387 | const value = await privateApi.debugCommands.vmServices.getCurrentServiceExtensionValue(dc.currentSession, id); |
| 388 | assert.equal(value, expected); |
| 389 | } |
| 390 | |
| 391 | export function sdkPathForFile(file: string) { |
| 392 | return path.join(privateApi.workspaceContext.sdks.dart, isWin ? file.replace(/\//g, "\\") : file); |
no test coverage detected