Skip to content

Commit ec8edb3

Browse files
author
copybara-service
committed
deploy: 29cf54b
1 parent f45b496 commit ec8edb3

File tree

79 files changed

+1532
-1206
lines changed

Some content is hidden

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

79 files changed

+1532
-1206
lines changed

front_end/core/common/Object.js

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

front_end/core/common/Object.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/common/common.js

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

front_end/core/common/common.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/host/UserMetrics.d.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -257,7 +257,9 @@ export declare enum Action {
257257
AiCodeGenerationSuggestionAccepted = 196,
258258
InsightTeaserModelDownloadStarted = 197,
259259
InsightTeaserModelDownloadCompleted = 198,
260-
MAX_VALUE = 199
260+
AiCodeGenerationError = 199,
261+
AiCodeGenerationRequestTriggered = 200,
262+
MAX_VALUE = 201
261263
}
262264
export declare enum PanelCodes {
263265
elements = 1,

front_end/core/host/UserMetrics.js

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

front_end/core/host/UserMetrics.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/host/host.js

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

front_end/core/host/host.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/SourceMap.d.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,8 @@ export declare class SourceMap {
9393
embeddedContentByURL(sourceURL: Platform.DevToolsPath.UrlString): string | null;
9494
hasScopeInfo(): boolean;
9595
findEntry(lineNumber: number, columnNumber: number, inlineFrameIndex?: number): SourceMapEntry | null;
96+
/** Returns the entry at the given position but only if an entry exists for that exact position */
97+
findEntryExact(lineNumber: number, columnNumber: number): SourceMapEntry | null;
9698
findEntryRanges(lineNumber: number, columnNumber: number): {
9799
range: TextUtils.TextRange.TextRange;
98100
sourceRange: TextUtils.TextRange.TextRange;

0 commit comments

Comments
 (0)