Home
last modified time | relevance | path

Searched refs:debuggerType (Results 1 – 10 of 10) sorted by relevance

/expo/packages/@expo/cli/src/start/server/metro/inspector-proxy/handlers/
H A DVscodeRuntimeGetProperties.ts20 { debuggerType }: ExpoDebuggerInfo
22 if (debuggerType === 'vscode' && message.method === 'Runtime.getProperties') {
32 { debuggerType }: ExpoDebuggerInfo
35 debuggerType === 'vscode' &&
H A DVscodeDebuggerSetBreakpointByUrl.ts15 { debuggerType }: ExpoDebuggerInfo
18 debuggerType === 'vscode' &&
H A DVscodeDebuggerGetPossibleBreakpoints.ts13 { socket, debuggerType }: ExpoDebuggerInfo
15 if (debuggerType === 'vscode' && message.method === 'Debugger.getPossibleBreakpoints') {
H A DVscodeDebuggerScriptParsed.ts22 if (debuggerInfo.debuggerType !== 'vscode' || message.method !== 'Debugger.scriptParsed') {
/expo/packages/@expo/cli/src/start/server/metro/inspector-proxy/handlers/__tests__/
H A DVscodeDebuggerScriptParsed.test.ts31 expect(handler.onDeviceMessage(message, { debuggerType: 'generic' })).toBe(false);
37 const debuggerInfo = { debuggerType: 'vscode' };
68 const debuggerInfo = { debuggerType: 'vscode' };
101 const debuggerInfo = { debuggerType: 'vscode' };
134 const debuggerInfo = { debuggerType: 'vscode' };
165 const debuggerInfo = { debuggerType: 'vscode' };
H A DVscodeRuntimeGetProperties.test.ts30 expect(handler.onDebuggerMessage(message, { debuggerType: 'generic' })).toBe(false);
35 handler.onDeviceMessage({ id: 420, result: descriptors }, { debuggerType: 'generic' })
43 const debuggerInfo = { debuggerType: 'vscode' };
81 const debuggerInfo = { debuggerType: 'vscode' };
H A DVscodeDebuggerGetPossibleBreakpoints.test.ts20 expect(handler.onDebuggerMessage(message, { debuggerType: 'generic' })).toBe(false);
26 debuggerType: 'vscode',
H A DVscodeDebuggerSetBreakpointByUrl.test.ts22 expect(handler.onDebuggerMessage(message, { debuggerType: 'generic' })).toBe(false);
27 const debuggerInfo = { debuggerType: 'vscode' };
/expo/packages/@expo/cli/src/start/server/metro/inspector-proxy/
H A Ddevice.ts18 export type ExpoDebuggerInfo = DebuggerInfo & { debuggerType?: DebuggerType };
75 handleDebuggerConnectionWithType(socket: WS, pageId: string, debuggerType: DebuggerType): void {
79 this._debuggerConnection.debuggerType = debuggerType;
H A Dproxy.ts143 const { deviceId, pageId, debuggerType } = getDebuggerInfo(request.url); constant
158 if (debuggerType && typeof device.handleDebuggerConnectionWithType === 'function') {
160 device.handleDebuggerConnectionWithType(socket, pageId, debuggerType);
207 debuggerType: asString(query.type) ?? undefined,