Skip to content

Commit 2128c45

Browse files
author
copybara-service
committed
deploy: be220fb
1 parent 9fa086d commit 2128c45

143 files changed

Lines changed: 450 additions & 755 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

front_end/core/i18n/locales/en-US.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

front_end/core/i18n/locales/generated/en-US.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12245,6 +12245,12 @@
1224512245
"panels/recorder/components/RecordingView.ts | cancelReplay": {
1224612246
"message": "Cancel replay"
1224712247
},
12248+
"panels/recorder/components/RecordingView.ts | codeSidebarClosed": {
12249+
"message": "Code sidebar closed"
12250+
},
12251+
"panels/recorder/components/RecordingView.ts | codeSidebarOpened": {
12252+
"message": "Code sidebar opened"
12253+
},
1224812254
"panels/recorder/components/RecordingView.ts | default": {
1224912255
"message": "Default"
1225012256
},

front_end/core/protocol_client/protocol_client.js

Lines changed: 3 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

front_end/core/protocol_client/protocol_client.js.map

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

front_end/core/sdk/DebuggerModel.d.ts

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,6 @@ export declare class DebuggerModel extends SDKModel<EventTypes> {
6969
private setDebuggerPausedDetails;
7070
private resetDebuggerPausedDetails;
7171
setBeforePausedCallback(callback: ((arg0: DebuggerPausedDetails, autoSteppingContext: Location | null) => Promise<boolean>) | null): void;
72-
setExpandCallFramesCallback(callback: ((arg0: CallFrame[]) => Promise<CallFrame[]>) | null): void;
7372
setEvaluateOnCallFrameCallback(callback: ((arg0: CallFrame, arg1: EvaluationOptions) => Promise<EvaluationResult | null>) | null): void;
7473
setSynchronizeBreakpointsCallback(callback: ((script: Script) => Promise<void>) | null): void;
7574
pausedScript(callFrames: Protocol.Debugger.CallFrame[], reason: Protocol.Debugger.PausedEventReason, auxData: Object | undefined, breakpointIds: string[], asyncStackTrace?: Protocol.Runtime.StackTrace, asyncStackTraceId?: Protocol.Runtime.StackTraceId): Promise<void>;
@@ -178,26 +177,13 @@ export interface MissingDebugFiles {
178177
resourceUrl: Platform.DevToolsPath.UrlString;
179178
initiator: PageResourceLoadInitiator;
180179
}
181-
export declare const enum MissingDebugInfoType {
182-
/** No debug information at all for the call frame */
183-
NO_INFO = "NO_INFO",
184-
/** Some debug information available, but it references files with debug information we were not able to retrieve */
185-
PARTIAL_INFO = "PARTIAL_INFO"
186-
}
187-
export type MissingDebugInfo = {
188-
type: MissingDebugInfoType.NO_INFO;
189-
} | {
190-
type: MissingDebugInfoType.PARTIAL_INFO;
191-
missingDebugFiles: MissingDebugFiles[];
192-
};
193180
export declare class CallFrame {
194181
#private;
195182
debuggerModel: DebuggerModel;
196183
readonly script: Script;
197184
payload: Protocol.Debugger.CallFrame;
198185
readonly inlineFrameIndex: number;
199186
readonly functionName: string;
200-
missingDebugInfoDetails: MissingDebugInfo | null;
201187
readonly exception: RemoteObject | null;
202188
readonly canBeRestarted: boolean;
203189
constructor(debuggerModel: DebuggerModel, script: Script, payload: Protocol.Debugger.CallFrame, inlineFrameIndex?: number, functionName?: string, exception?: RemoteObject | null);

front_end/core/sdk/DebuggerModel.js

Lines changed: 0 additions & 17 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

front_end/core/sdk/DebuggerModel.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

front_end/core/sdk/sdk.js

Lines changed: 5 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1787,8 +1787,7 @@ var generatedProperties = [
17871787
"inherited": false,
17881788
"keywords": [
17891789
"none",
1790-
"auto",
1791-
"spanning-item",
1790+
"normal",
17921791
"intersection"
17931792
],
17941793
"name": "column-rule-break"
@@ -2752,6 +2751,7 @@ var generatedProperties = [
27522751
"longhands": [
27532752
"grid-template-areas",
27542753
"grid-template-columns",
2754+
"grid-template-rows",
27552755
"grid-lanes-direction"
27562756
],
27572757
"name": "grid-lanes"
@@ -3836,8 +3836,7 @@ var generatedProperties = [
38363836
"inherited": false,
38373837
"keywords": [
38383838
"none",
3839-
"auto",
3840-
"spanning-item",
3839+
"normal",
38413840
"intersection"
38423841
],
38433842
"name": "row-rule-break"
@@ -5589,8 +5588,7 @@ var generatedPropertyValues = {
55895588
"column-rule-break": {
55905589
"values": [
55915590
"none",
5592-
"auto",
5593-
"spanning-item",
5591+
"normal",
55945592
"intersection"
55955593
]
55965594
},
@@ -6727,8 +6725,7 @@ var generatedPropertyValues = {
67276725
"row-rule-break": {
67286726
"values": [
67296727
"none",
6730-
"auto",
6731-
"spanning-item",
6728+
"normal",
67326729
"intersection"
67336730
]
67346731
},
@@ -22391,7 +22388,6 @@ var DebuggerModel = class _DebuggerModel extends SDKModel {
2239122388
#skipAllPausesTimeout = 0;
2239222389
#beforePausedCallback = null;
2239322390
#computeAutoStepRangesCallback = null;
22394-
#expandCallFramesCallback = null;
2239522391
evaluateOnCallFrameCallback = null;
2239622392
#synchronizeBreakpointsCallback = null;
2239722393
// We need to be able to register listeners for individual breakpoints. As such, we dispatch
@@ -22754,9 +22750,6 @@ var DebuggerModel = class _DebuggerModel extends SDKModel {
2275422750
setBeforePausedCallback(callback) {
2275522751
this.#beforePausedCallback = callback;
2275622752
}
22757-
setExpandCallFramesCallback(callback) {
22758-
this.#expandCallFramesCallback = callback;
22759-
}
2276022753
setEvaluateOnCallFrameCallback(callback) {
2276122754
this.evaluateOnCallFrameCallback = callback;
2276222755
}
@@ -22773,7 +22766,6 @@ var DebuggerModel = class _DebuggerModel extends SDKModel {
2277322766
return;
2277422767
}
2277522768
const pausedDetails = new DebuggerPausedDetails(this, callFrames, reason, auxData, breakpointIds, asyncStackTrace, asyncStackTraceId);
22776-
await this.#expandCallFrames(pausedDetails);
2277722769
if (this.continueToLocationCallback) {
2277822770
const callback = this.continueToLocationCallback;
2277922771
this.continueToLocationCallback = null;
@@ -22791,12 +22783,6 @@ var DebuggerModel = class _DebuggerModel extends SDKModel {
2279122783
Common17.EventTarget.fireEvent("DevTools.DebuggerPaused");
2279222784
}
2279322785
}
22794-
/** Delegates to the DebuggerLanguagePlugin and potential attached source maps to expand inlined call frames */
22795-
async #expandCallFrames(pausedDetails) {
22796-
if (this.#expandCallFramesCallback) {
22797-
pausedDetails.callFrames = await this.#expandCallFramesCallback.call(null, pausedDetails.callFrames);
22798-
}
22799-
}
2280022786
resumedScript() {
2280122787
this.resetDebuggerPausedDetails();
2280222788
this.dispatchEventToListeners(Events7.DebuggerResumed, this);
@@ -22830,9 +22816,6 @@ var DebuggerModel = class _DebuggerModel extends SDKModel {
2283022816
this.#sourceMapManager.attachSourceMap(script, script.sourceURL, script.sourceMapURL);
2283122817
}
2283222818
async setDebugInfoURL(script, _externalURL) {
22833-
if (this.#expandCallFramesCallback && this.#debuggerPausedDetails) {
22834-
this.#debuggerPausedDetails.callFrames = await this.#expandCallFramesCallback.call(null, this.#debuggerPausedDetails.callFrames);
22835-
}
2283622819
this.dispatchEventToListeners(Events7.DebugInfoAttached, script);
2283722820
}
2283822821
executionContextDestroyed(executionContext) {
@@ -23150,7 +23133,6 @@ var CallFrame = class _CallFrame {
2315023133
functionName;
2315123134
#functionLocation;
2315223135
#returnValue;
23153-
missingDebugInfoDetails;
2315423136
exception;
2315523137
canBeRestarted;
2315623138
constructor(debuggerModel, script, payload, inlineFrameIndex, functionName, exception = null) {
@@ -23162,7 +23144,6 @@ var CallFrame = class _CallFrame {
2316223144
this.#localScope = null;
2316323145
this.inlineFrameIndex = inlineFrameIndex || 0;
2316423146
this.functionName = functionName ?? payload.functionName;
23165-
this.missingDebugInfoDetails = null;
2316623147
this.canBeRestarted = Boolean(payload.canBeRestarted);
2316723148
this.exception = exception;
2316823149
for (let i = 0; i < payload.scopeChain.length; ++i) {

0 commit comments

Comments
 (0)