UNPKG

vscode-chrome-debug-core

Version:

A library for building VS Code debug adapters for targets that support the Chrome Remote Debug Protocol

13 lines (12 loc) 614 B
import { UrlPathTransformer } from './urlPathTransformer'; import { ChromeDebugSession } from '../chrome/chromeDebugSession'; /** * Converts a local path from Code to a path on the target. Uses the UrlPathTransforme logic and fallbacks to asking the client if neccesary */ export declare class FallbackToClientPathTransformer extends UrlPathTransformer { private _session; private static ASK_CLIENT_TO_MAP_URL_TO_FILE_PATH_TIMEOUT; constructor(_session: ChromeDebugSession); protected targetUrlToClientPath(scriptUrl: string): Promise<string>; private requestClientToMapURLToFilePath(url); }