devtools-tracing 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (397) hide show
  1. package/generate.ts +643 -0
  2. package/index.ts +16 -0
  3. package/lib/front_end/core/common/App.ts +7 -0
  4. package/lib/front_end/core/common/AppProvider.ts +32 -0
  5. package/lib/front_end/core/common/Base64.ts +47 -0
  6. package/lib/front_end/core/common/CharacterIdMap.ts +30 -0
  7. package/lib/front_end/core/common/Color.ts +2506 -0
  8. package/lib/front_end/core/common/ColorConverter.ts +402 -0
  9. package/lib/front_end/core/common/ColorUtils.ts +252 -0
  10. package/lib/front_end/core/common/Console.ts +114 -0
  11. package/lib/front_end/core/common/Debouncer.ts +15 -0
  12. package/lib/front_end/core/common/EventTarget.ts +52 -0
  13. package/lib/front_end/core/common/Gzip.ts +74 -0
  14. package/lib/front_end/core/common/JavaScriptMetaData.ts +29 -0
  15. package/lib/front_end/core/common/Lazy.ts +31 -0
  16. package/lib/front_end/core/common/Linkifier.ts +55 -0
  17. package/lib/front_end/core/common/MapWithDefault.ts +26 -0
  18. package/lib/front_end/core/common/Mutex.ts +55 -0
  19. package/lib/front_end/core/common/Object.ts +145 -0
  20. package/lib/front_end/core/common/ParsedURL.ts +554 -0
  21. package/lib/front_end/core/common/Progress.ts +180 -0
  22. package/lib/front_end/core/common/QueryParamHandler.ts +7 -0
  23. package/lib/front_end/core/common/ResolverBase.ts +85 -0
  24. package/lib/front_end/core/common/ResourceType.ts +588 -0
  25. package/lib/front_end/core/common/ReturnToPanel.ts +17 -0
  26. package/lib/front_end/core/common/Revealer.ts +192 -0
  27. package/lib/front_end/core/common/Runnable.ts +41 -0
  28. package/lib/front_end/core/common/SegmentedRange.ts +87 -0
  29. package/lib/front_end/core/common/SettingRegistration.ts +339 -0
  30. package/lib/front_end/core/common/Settings.ts +1497 -0
  31. package/lib/front_end/core/common/SimpleHistoryManager.ts +124 -0
  32. package/lib/front_end/core/common/StringOutputStream.ts +26 -0
  33. package/lib/front_end/core/common/TextDictionary.ts +48 -0
  34. package/lib/front_end/core/common/Throttler.ts +99 -0
  35. package/lib/front_end/core/common/Trie.ts +152 -0
  36. package/lib/front_end/core/common/Worker.ts +60 -0
  37. package/lib/front_end/core/common/common.ts +81 -0
  38. package/lib/front_end/core/host/AidaClient.ts +733 -0
  39. package/lib/front_end/core/host/GdpClient.ts +316 -0
  40. package/lib/front_end/core/host/InspectorFrontendHost.ts +648 -0
  41. package/lib/front_end/core/host/InspectorFrontendHostAPI.ts +551 -0
  42. package/lib/front_end/core/host/Platform.ts +76 -0
  43. package/lib/front_end/core/host/ResourceLoader.ts +282 -0
  44. package/lib/front_end/core/host/UserMetrics.ts +1230 -0
  45. package/lib/front_end/core/host/host.ts +23 -0
  46. package/lib/front_end/core/i18n/ByteUtilities.ts +82 -0
  47. package/lib/front_end/core/i18n/DevToolsLocale.ts +87 -0
  48. package/lib/front_end/core/i18n/NumberFormatter.ts +82 -0
  49. package/lib/front_end/core/i18n/i18n.ts +17 -0
  50. package/lib/front_end/core/i18n/i18nImpl.ts +204 -0
  51. package/lib/front_end/core/i18n/i18nTypes.ts +10 -0
  52. package/lib/front_end/core/i18n/locales.js +14 -0
  53. package/lib/front_end/core/i18n/time-utilities.ts +174 -0
  54. package/lib/front_end/core/platform/ArrayUtilities.ts +271 -0
  55. package/lib/front_end/core/platform/Brand.ts +23 -0
  56. package/lib/front_end/core/platform/Constructor.ts +10 -0
  57. package/lib/front_end/core/platform/DOMUtilities.ts +138 -0
  58. package/lib/front_end/core/platform/DateUtilities.ts +15 -0
  59. package/lib/front_end/core/platform/DevToolsPath.ts +53 -0
  60. package/lib/front_end/core/platform/KeyboardUtilities.ts +38 -0
  61. package/lib/front_end/core/platform/MapUtilities.ts +95 -0
  62. package/lib/front_end/core/platform/MimeType.ts +175 -0
  63. package/lib/front_end/core/platform/NumberUtilities.ts +80 -0
  64. package/lib/front_end/core/platform/StringUtilities.ts +588 -0
  65. package/lib/front_end/core/platform/Timing.ts +17 -0
  66. package/lib/front_end/core/platform/TypedArrayUtilities.ts +189 -0
  67. package/lib/front_end/core/platform/TypescriptUtilities.ts +86 -0
  68. package/lib/front_end/core/platform/UIString.ts +39 -0
  69. package/lib/front_end/core/platform/UserVisibleError.ts +28 -0
  70. package/lib/front_end/core/platform/platform.ts +45 -0
  71. package/lib/front_end/core/protocol_client/ConnectionTransport.ts +26 -0
  72. package/lib/front_end/core/protocol_client/InspectorBackend.ts +1050 -0
  73. package/lib/front_end/core/protocol_client/NodeURL.ts +42 -0
  74. package/lib/front_end/core/protocol_client/protocol_client.ts +13 -0
  75. package/lib/front_end/core/root/Runtime.ts +609 -0
  76. package/lib/front_end/core/root/root.ts +6 -0
  77. package/lib/front_end/core/sdk/AccessibilityModel.ts +353 -0
  78. package/lib/front_end/core/sdk/AnimationModel.ts +1041 -0
  79. package/lib/front_end/core/sdk/AutofillModel.ts +184 -0
  80. package/lib/front_end/core/sdk/CPUProfilerModel.ts +148 -0
  81. package/lib/front_end/core/sdk/CPUThrottlingManager.ts +282 -0
  82. package/lib/front_end/core/sdk/CSSContainerQuery.ts +139 -0
  83. package/lib/front_end/core/sdk/CSSFontFace.ts +40 -0
  84. package/lib/front_end/core/sdk/CSSLayer.ts +30 -0
  85. package/lib/front_end/core/sdk/CSSMatchedStyles.ts +1646 -0
  86. package/lib/front_end/core/sdk/CSSMedia.ts +121 -0
  87. package/lib/front_end/core/sdk/CSSMetadata.ts +1647 -0
  88. package/lib/front_end/core/sdk/CSSModel.ts +1128 -0
  89. package/lib/front_end/core/sdk/CSSProperty.ts +384 -0
  90. package/lib/front_end/core/sdk/CSSPropertyParser.ts +681 -0
  91. package/lib/front_end/core/sdk/CSSPropertyParserMatchers.ts +1395 -0
  92. package/lib/front_end/core/sdk/CSSQuery.ts +72 -0
  93. package/lib/front_end/core/sdk/CSSRule.ts +465 -0
  94. package/lib/front_end/core/sdk/CSSScope.ts +30 -0
  95. package/lib/front_end/core/sdk/CSSStartingStyle.ts +29 -0
  96. package/lib/front_end/core/sdk/CSSStyleDeclaration.ts +313 -0
  97. package/lib/front_end/core/sdk/CSSStyleSheetHeader.ts +196 -0
  98. package/lib/front_end/core/sdk/CSSSupports.ts +33 -0
  99. package/lib/front_end/core/sdk/CategorizedBreakpoint.ts +64 -0
  100. package/lib/front_end/core/sdk/ChildTargetManager.ts +314 -0
  101. package/lib/front_end/core/sdk/CompilerSourceMappingContentProvider.ts +62 -0
  102. package/lib/front_end/core/sdk/Connections.ts +293 -0
  103. package/lib/front_end/core/sdk/ConsoleModel.ts +808 -0
  104. package/lib/front_end/core/sdk/ConsoleModelTypes.ts +15 -0
  105. package/lib/front_end/core/sdk/Cookie.ts +319 -0
  106. package/lib/front_end/core/sdk/CookieModel.ts +239 -0
  107. package/lib/front_end/core/sdk/CookieParser.ts +185 -0
  108. package/lib/front_end/core/sdk/DOMDebuggerModel.ts +787 -0
  109. package/lib/front_end/core/sdk/DOMModel.ts +1961 -0
  110. package/lib/front_end/core/sdk/DebuggerModel.ts +1605 -0
  111. package/lib/front_end/core/sdk/EmulationModel.ts +648 -0
  112. package/lib/front_end/core/sdk/EnhancedTracesParser.ts +515 -0
  113. package/lib/front_end/core/sdk/EventBreakpointsModel.ts +183 -0
  114. package/lib/front_end/core/sdk/FrameAssociated.ts +11 -0
  115. package/lib/front_end/core/sdk/FrameManager.ts +259 -0
  116. package/lib/front_end/core/sdk/HeapProfilerModel.ts +225 -0
  117. package/lib/front_end/core/sdk/HttpReasonPhraseStrings.ts +77 -0
  118. package/lib/front_end/core/sdk/IOModel.ts +91 -0
  119. package/lib/front_end/core/sdk/IsolateManager.ts +257 -0
  120. package/lib/front_end/core/sdk/IssuesModel.ts +70 -0
  121. package/lib/front_end/core/sdk/LayerTreeBase.ts +169 -0
  122. package/lib/front_end/core/sdk/LogModel.ts +56 -0
  123. package/lib/front_end/core/sdk/NetworkManager.ts +2823 -0
  124. package/lib/front_end/core/sdk/NetworkRequest.ts +2253 -0
  125. package/lib/front_end/core/sdk/OverlayColorGenerator.ts +52 -0
  126. package/lib/front_end/core/sdk/OverlayModel.ts +1011 -0
  127. package/lib/front_end/core/sdk/OverlayPersistentHighlighter.ts +522 -0
  128. package/lib/front_end/core/sdk/PageLoad.ts +35 -0
  129. package/lib/front_end/core/sdk/PageResourceLoader.ts +435 -0
  130. package/lib/front_end/core/sdk/PaintProfiler.ts +110 -0
  131. package/lib/front_end/core/sdk/PerformanceMetricsModel.ts +84 -0
  132. package/lib/front_end/core/sdk/PreloadingModel.ts +863 -0
  133. package/lib/front_end/core/sdk/RehydratingConnection.ts +386 -0
  134. package/lib/front_end/core/sdk/RehydratingObject.ts +66 -0
  135. package/lib/front_end/core/sdk/RemoteObject.ts +1160 -0
  136. package/lib/front_end/core/sdk/Resource.ts +232 -0
  137. package/lib/front_end/core/sdk/ResourceTreeModel.ts +1160 -0
  138. package/lib/front_end/core/sdk/RuntimeModel.ts +732 -0
  139. package/lib/front_end/core/sdk/SDKModel.ts +65 -0
  140. package/lib/front_end/core/sdk/ScopeTreeCache.ts +45 -0
  141. package/lib/front_end/core/sdk/ScreenCaptureModel.ts +255 -0
  142. package/lib/front_end/core/sdk/Script.ts +534 -0
  143. package/lib/front_end/core/sdk/SecurityOriginManager.ts +76 -0
  144. package/lib/front_end/core/sdk/ServerSentEvents.ts +80 -0
  145. package/lib/front_end/core/sdk/ServerSentEventsProtocol.ts +122 -0
  146. package/lib/front_end/core/sdk/ServerTiming.ts +260 -0
  147. package/lib/front_end/core/sdk/ServiceWorkerCacheModel.ts +377 -0
  148. package/lib/front_end/core/sdk/ServiceWorkerManager.ts +605 -0
  149. package/lib/front_end/core/sdk/SourceMap.ts +867 -0
  150. package/lib/front_end/core/sdk/SourceMapCache.ts +54 -0
  151. package/lib/front_end/core/sdk/SourceMapFunctionRanges.ts +156 -0
  152. package/lib/front_end/core/sdk/SourceMapManager.ts +239 -0
  153. package/lib/front_end/core/sdk/SourceMapScopeChainEntry.ts +189 -0
  154. package/lib/front_end/core/sdk/SourceMapScopesInfo.ts +508 -0
  155. package/lib/front_end/core/sdk/StorageBucketsModel.ts +204 -0
  156. package/lib/front_end/core/sdk/StorageKeyManager.ts +98 -0
  157. package/lib/front_end/core/sdk/Target.ts +332 -0
  158. package/lib/front_end/core/sdk/TargetManager.ts +453 -0
  159. package/lib/front_end/core/sdk/TraceObject.ts +61 -0
  160. package/lib/front_end/core/sdk/WebAuthnModel.ts +104 -0
  161. package/lib/front_end/core/sdk/sdk.ts +174 -0
  162. package/lib/front_end/entrypoints/formatter_worker/FormatterActions.ts +59 -0
  163. package/lib/front_end/generated/InspectorBackendCommands.js +1617 -0
  164. package/lib/front_end/generated/SupportedCSSProperties.js +7512 -0
  165. package/lib/front_end/generated/protocol-proxy-api.d.ts +5022 -0
  166. package/lib/front_end/generated/protocol.ts +22014 -0
  167. package/lib/front_end/models/cpu_profile/CPUProfileDataModel.ts +571 -0
  168. package/lib/front_end/models/cpu_profile/ProfileTreeModel.ts +103 -0
  169. package/lib/front_end/models/cpu_profile/cpu_profile.ts +11 -0
  170. package/lib/front_end/models/formatter/FormatterWorkerPool.ts +219 -0
  171. package/lib/front_end/models/formatter/ScriptFormatter.ts +112 -0
  172. package/lib/front_end/models/formatter/formatter.ts +8 -0
  173. package/lib/front_end/models/text_utils/CodeMirrorUtils.ts +37 -0
  174. package/lib/front_end/models/text_utils/ContentData.ts +199 -0
  175. package/lib/front_end/models/text_utils/ContentProvider.ts +68 -0
  176. package/lib/front_end/models/text_utils/StaticContentProvider.ts +49 -0
  177. package/lib/front_end/models/text_utils/StreamingContentData.ts +108 -0
  178. package/lib/front_end/models/text_utils/Text.ts +90 -0
  179. package/lib/front_end/models/text_utils/TextCursor.ts +44 -0
  180. package/lib/front_end/models/text_utils/TextRange.ts +266 -0
  181. package/lib/front_end/models/text_utils/TextUtils.ts +401 -0
  182. package/lib/front_end/models/text_utils/WasmDisassembly.ts +87 -0
  183. package/lib/front_end/models/text_utils/text_utils.ts +27 -0
  184. package/lib/front_end/models/trace/EntityMapper.ts +141 -0
  185. package/lib/front_end/models/trace/EventsSerializer.ts +101 -0
  186. package/lib/front_end/models/trace/LanternComputationData.ts +438 -0
  187. package/lib/front_end/models/trace/ModelImpl.ts +236 -0
  188. package/lib/front_end/models/trace/Name.ts +136 -0
  189. package/lib/front_end/models/trace/Processor.ts +652 -0
  190. package/lib/front_end/models/trace/Styles.ts +1138 -0
  191. package/lib/front_end/models/trace/extras/FilmStrip.ts +78 -0
  192. package/lib/front_end/models/trace/extras/MainThreadActivity.ts +86 -0
  193. package/lib/front_end/models/trace/extras/ScriptDuplication.ts +236 -0
  194. package/lib/front_end/models/trace/extras/StackTraceForEvent.ts +203 -0
  195. package/lib/front_end/models/trace/extras/ThirdParties.ts +164 -0
  196. package/lib/front_end/models/trace/extras/TraceFilter.ts +62 -0
  197. package/lib/front_end/models/trace/extras/TraceTree.ts +701 -0
  198. package/lib/front_end/models/trace/extras/extras.ts +11 -0
  199. package/lib/front_end/models/trace/handlers/AnimationFramesHandler.ts +128 -0
  200. package/lib/front_end/models/trace/handlers/AnimationHandler.ts +36 -0
  201. package/lib/front_end/models/trace/handlers/AsyncJSCallsHandler.ts +239 -0
  202. package/lib/front_end/models/trace/handlers/AuctionWorkletsHandler.ts +183 -0
  203. package/lib/front_end/models/trace/handlers/DOMStatsHandler.ts +31 -0
  204. package/lib/front_end/models/trace/handlers/ExtensionTraceDataHandler.ts +306 -0
  205. package/lib/front_end/models/trace/handlers/FlowsHandler.ts +175 -0
  206. package/lib/front_end/models/trace/handlers/FramesHandler.ts +571 -0
  207. package/lib/front_end/models/trace/handlers/GPUHandler.ts +50 -0
  208. package/lib/front_end/models/trace/handlers/ImagePaintingHandler.ts +183 -0
  209. package/lib/front_end/models/trace/handlers/InitiatorsHandler.ts +193 -0
  210. package/lib/front_end/models/trace/handlers/InvalidationsHandler.ts +168 -0
  211. package/lib/front_end/models/trace/handlers/LargestImagePaintHandler.ts +109 -0
  212. package/lib/front_end/models/trace/handlers/LargestTextPaintHandler.ts +35 -0
  213. package/lib/front_end/models/trace/handlers/LayerTreeHandler.ts +123 -0
  214. package/lib/front_end/models/trace/handlers/LayoutShiftsHandler.ts +573 -0
  215. package/lib/front_end/models/trace/handlers/MemoryHandler.ts +31 -0
  216. package/lib/front_end/models/trace/handlers/MetaHandler.ts +525 -0
  217. package/lib/front_end/models/trace/handlers/ModelHandlers.ts +34 -0
  218. package/lib/front_end/models/trace/handlers/NetworkRequestsHandler.ts +672 -0
  219. package/lib/front_end/models/trace/handlers/PageFramesHandler.ts +52 -0
  220. package/lib/front_end/models/trace/handlers/PageLoadMetricsHandler.ts +460 -0
  221. package/lib/front_end/models/trace/handlers/RendererHandler.ts +428 -0
  222. package/lib/front_end/models/trace/handlers/SamplesHandler.ts +271 -0
  223. package/lib/front_end/models/trace/handlers/ScreenshotsHandler.ts +122 -0
  224. package/lib/front_end/models/trace/handlers/ScriptsHandler.ts +336 -0
  225. package/lib/front_end/models/trace/handlers/SelectorStatsHandler.ts +110 -0
  226. package/lib/front_end/models/trace/handlers/Threads.ts +139 -0
  227. package/lib/front_end/models/trace/handlers/UserInteractionsHandler.ts +400 -0
  228. package/lib/front_end/models/trace/handlers/UserTimingsHandler.ts +233 -0
  229. package/lib/front_end/models/trace/handlers/WarningsHandler.ts +162 -0
  230. package/lib/front_end/models/trace/handlers/WorkersHandler.ts +45 -0
  231. package/lib/front_end/models/trace/handlers/handlers.ts +8 -0
  232. package/lib/front_end/models/trace/handlers/helpers.ts +196 -0
  233. package/lib/front_end/models/trace/handlers/types.ts +75 -0
  234. package/lib/front_end/models/trace/helpers/Extensions.ts +54 -0
  235. package/lib/front_end/models/trace/helpers/Network.ts +129 -0
  236. package/lib/front_end/models/trace/helpers/SamplesIntegrator.ts +544 -0
  237. package/lib/front_end/models/trace/helpers/SyntheticEvents.ts +87 -0
  238. package/lib/front_end/models/trace/helpers/Timing.ts +248 -0
  239. package/lib/front_end/models/trace/helpers/Trace.ts +928 -0
  240. package/lib/front_end/models/trace/helpers/TreeHelpers.ts +320 -0
  241. package/lib/front_end/models/trace/helpers/helpers.ts +11 -0
  242. package/lib/front_end/models/trace/insights/CLSCulprits.ts +668 -0
  243. package/lib/front_end/models/trace/insights/Cache.ts +269 -0
  244. package/lib/front_end/models/trace/insights/Common.ts +453 -0
  245. package/lib/front_end/models/trace/insights/DOMSize.ts +223 -0
  246. package/lib/front_end/models/trace/insights/DocumentLatency.ts +319 -0
  247. package/lib/front_end/models/trace/insights/DuplicatedJavaScript.ts +126 -0
  248. package/lib/front_end/models/trace/insights/FontDisplay.ts +119 -0
  249. package/lib/front_end/models/trace/insights/ForcedReflow.ts +220 -0
  250. package/lib/front_end/models/trace/insights/INPBreakdown.ts +171 -0
  251. package/lib/front_end/models/trace/insights/ImageDelivery.ts +348 -0
  252. package/lib/front_end/models/trace/insights/LCPBreakdown.ts +268 -0
  253. package/lib/front_end/models/trace/insights/LCPDiscovery.ts +237 -0
  254. package/lib/front_end/models/trace/insights/LegacyJavaScript.ts +138 -0
  255. package/lib/front_end/models/trace/insights/Models.ts +22 -0
  256. package/lib/front_end/models/trace/insights/ModernHTTP.ts +257 -0
  257. package/lib/front_end/models/trace/insights/NetworkDependencyTree.ts +726 -0
  258. package/lib/front_end/models/trace/insights/RenderBlocking.ts +257 -0
  259. package/lib/front_end/models/trace/insights/SlowCSSSelector.ts +175 -0
  260. package/lib/front_end/models/trace/insights/Statistics.ts +101 -0
  261. package/lib/front_end/models/trace/insights/ThirdParties.ts +130 -0
  262. package/lib/front_end/models/trace/insights/Viewport.ts +138 -0
  263. package/lib/front_end/models/trace/insights/insights.ts +10 -0
  264. package/lib/front_end/models/trace/insights/types.ts +157 -0
  265. package/lib/front_end/models/trace/lantern/core/LanternError.ts +7 -0
  266. package/lib/front_end/models/trace/lantern/core/NetworkAnalyzer.ts +619 -0
  267. package/lib/front_end/models/trace/lantern/core/core.ts +6 -0
  268. package/lib/front_end/models/trace/lantern/graph/BaseNode.ts +345 -0
  269. package/lib/front_end/models/trace/lantern/graph/CPUNode.ts +80 -0
  270. package/lib/front_end/models/trace/lantern/graph/NetworkNode.ts +101 -0
  271. package/lib/front_end/models/trace/lantern/graph/PageDependencyGraph.ts +636 -0
  272. package/lib/front_end/models/trace/lantern/graph/graph.ts +8 -0
  273. package/lib/front_end/models/trace/lantern/lantern.ts +17 -0
  274. package/lib/front_end/models/trace/lantern/metrics/FirstContentfulPaint.ts +187 -0
  275. package/lib/front_end/models/trace/lantern/metrics/Interactive.ts +88 -0
  276. package/lib/front_end/models/trace/lantern/metrics/LargestContentfulPaint.ts +92 -0
  277. package/lib/front_end/models/trace/lantern/metrics/MaxPotentialFID.ts +72 -0
  278. package/lib/front_end/models/trace/lantern/metrics/Metric.ts +126 -0
  279. package/lib/front_end/models/trace/lantern/metrics/SpeedIndex.ts +126 -0
  280. package/lib/front_end/models/trace/lantern/metrics/TBTUtils.ts +82 -0
  281. package/lib/front_end/models/trace/lantern/metrics/TotalBlockingTime.ts +112 -0
  282. package/lib/front_end/models/trace/lantern/metrics/metrics.ts +12 -0
  283. package/lib/front_end/models/trace/lantern/simulation/ConnectionPool.ts +150 -0
  284. package/lib/front_end/models/trace/lantern/simulation/Constants.ts +46 -0
  285. package/lib/front_end/models/trace/lantern/simulation/DNSCache.ts +61 -0
  286. package/lib/front_end/models/trace/lantern/simulation/SimulationTimingMap.ts +196 -0
  287. package/lib/front_end/models/trace/lantern/simulation/Simulator.ts +556 -0
  288. package/lib/front_end/models/trace/lantern/simulation/TCPConnection.ts +192 -0
  289. package/lib/front_end/models/trace/lantern/simulation/simulation.ts +10 -0
  290. package/lib/front_end/models/trace/lantern/types/Lantern.ts +220 -0
  291. package/lib/front_end/models/trace/lantern/types/types.ts +5 -0
  292. package/lib/front_end/models/trace/trace.ts +33 -0
  293. package/lib/front_end/models/trace/types/Configuration.ts +110 -0
  294. package/lib/front_end/models/trace/types/Extensions.ts +136 -0
  295. package/lib/front_end/models/trace/types/File.ts +281 -0
  296. package/lib/front_end/models/trace/types/Overlays.ts +138 -0
  297. package/lib/front_end/models/trace/types/Timing.ts +30 -0
  298. package/lib/front_end/models/trace/types/TraceEvents.ts +3277 -0
  299. package/lib/front_end/models/trace/types/types.ts +10 -0
  300. package/lib/front_end/third_party/i18n/LICENSE +202 -0
  301. package/lib/front_end/third_party/i18n/README.chromium +15 -0
  302. package/lib/front_end/third_party/i18n/i18n-impl.ts +61 -0
  303. package/lib/front_end/third_party/i18n/i18n.ts +11 -0
  304. package/lib/front_end/third_party/i18n/localized-string-set.ts +129 -0
  305. package/lib/front_end/third_party/intl-messageformat/LICENSE +33 -0
  306. package/lib/front_end/third_party/intl-messageformat/README.chromium +24 -0
  307. package/lib/front_end/third_party/intl-messageformat/intl-messageformat-tsconfig.json +16 -0
  308. package/lib/front_end/third_party/intl-messageformat/intl-messageformat.ts +6 -0
  309. package/lib/front_end/third_party/intl-messageformat/package/LICENSE.md +33 -0
  310. package/lib/front_end/third_party/intl-messageformat/package/README.md +3 -0
  311. package/lib/front_end/third_party/intl-messageformat/package/index.d.ts +6 -0
  312. package/lib/front_end/third_party/intl-messageformat/package/index.d.ts.map +1 -0
  313. package/lib/front_end/third_party/intl-messageformat/package/index.js +13 -0
  314. package/lib/front_end/third_party/intl-messageformat/package/intl-messageformat.esm.d.ts +5 -0
  315. package/lib/front_end/third_party/intl-messageformat/package/intl-messageformat.esm.js +1710 -0
  316. package/lib/front_end/third_party/intl-messageformat/package/intl-messageformat.iife.js +1815 -0
  317. package/lib/front_end/third_party/intl-messageformat/package/lib/index.d.ts +6 -0
  318. package/lib/front_end/third_party/intl-messageformat/package/lib/index.d.ts.map +1 -0
  319. package/lib/front_end/third_party/intl-messageformat/package/lib/index.js +10 -0
  320. package/lib/front_end/third_party/intl-messageformat/package/lib/src/core.d.ts +34 -0
  321. package/lib/front_end/third_party/intl-messageformat/package/lib/src/core.d.ts.map +1 -0
  322. package/lib/front_end/third_party/intl-messageformat/package/lib/src/core.js +229 -0
  323. package/lib/front_end/third_party/intl-messageformat/package/lib/src/error.d.ts +28 -0
  324. package/lib/front_end/third_party/intl-messageformat/package/lib/src/error.d.ts.map +1 -0
  325. package/lib/front_end/third_party/intl-messageformat/package/lib/src/error.js +48 -0
  326. package/lib/front_end/third_party/intl-messageformat/package/lib/src/formatters.d.ts +34 -0
  327. package/lib/front_end/third_party/intl-messageformat/package/lib/src/formatters.d.ts.map +1 -0
  328. package/lib/front_end/third_party/intl-messageformat/package/lib/src/formatters.js +179 -0
  329. package/lib/front_end/third_party/intl-messageformat/package/package.json +42 -0
  330. package/lib/front_end/third_party/intl-messageformat/package/src/core.d.ts +34 -0
  331. package/lib/front_end/third_party/intl-messageformat/package/src/core.d.ts.map +1 -0
  332. package/lib/front_end/third_party/intl-messageformat/package/src/core.js +230 -0
  333. package/lib/front_end/third_party/intl-messageformat/package/src/error.d.ts +28 -0
  334. package/lib/front_end/third_party/intl-messageformat/package/src/error.d.ts.map +1 -0
  335. package/lib/front_end/third_party/intl-messageformat/package/src/error.js +51 -0
  336. package/lib/front_end/third_party/intl-messageformat/package/src/formatters.d.ts +34 -0
  337. package/lib/front_end/third_party/intl-messageformat/package/src/formatters.d.ts.map +1 -0
  338. package/lib/front_end/third_party/intl-messageformat/package/src/formatters.js +182 -0
  339. package/lib/front_end/third_party/intl-messageformat/package/src/icu-messageformat-parser/error.d.ts +79 -0
  340. package/lib/front_end/third_party/intl-messageformat/package/src/icu-messageformat-parser/index.d.ts +15 -0
  341. package/lib/front_end/third_party/intl-messageformat/package/src/icu-messageformat-parser/parser.d.ts +153 -0
  342. package/lib/front_end/third_party/intl-messageformat/package/src/icu-messageformat-parser/types.d.ts +139 -0
  343. package/lib/front_end/third_party/legacy-javascript/LICENSE +202 -0
  344. package/lib/front_end/third_party/legacy-javascript/README.chromium +13 -0
  345. package/lib/front_end/third_party/legacy-javascript/legacy-javascript-tsconfig.json +8 -0
  346. package/lib/front_end/third_party/legacy-javascript/legacy-javascript.ts +3 -0
  347. package/lib/front_end/third_party/legacy-javascript/lib/legacy-javascript.d.ts +18 -0
  348. package/lib/front_end/third_party/legacy-javascript/lib/legacy-javascript.js +943 -0
  349. package/lib/front_end/third_party/legacy-javascript/package.json +8 -0
  350. package/lib/front_end/third_party/legacy-javascript/rebuild.sh +9 -0
  351. package/lib/front_end/third_party/third-party-web/LICENSE +20 -0
  352. package/lib/front_end/third_party/third-party-web/README.chromium +13 -0
  353. package/lib/front_end/third_party/third-party-web/lib/nostats-subset.d.ts +2 -0
  354. package/lib/front_end/third_party/third-party-web/lib/nostats-subset.js +149 -0
  355. package/lib/front_end/third_party/third-party-web/package/LICENSE +20 -0
  356. package/lib/front_end/third_party/third-party-web/package/README.md +929 -0
  357. package/lib/front_end/third_party/third-party-web/package/dist/entities-httparchive-nostats.json +1 -0
  358. package/lib/front_end/third_party/third-party-web/package/dist/entities-httparchive.json +1 -0
  359. package/lib/front_end/third_party/third-party-web/package/dist/entities-nostats.json +1 -0
  360. package/lib/front_end/third_party/third-party-web/package/dist/entities.json +1 -0
  361. package/lib/front_end/third_party/third-party-web/package/facades.md +46 -0
  362. package/lib/front_end/third_party/third-party-web/package/httparchive-nostats-subset.d.ts +1 -0
  363. package/lib/front_end/third_party/third-party-web/package/httparchive-nostats-subset.js +1 -0
  364. package/lib/front_end/third_party/third-party-web/package/httparchive-subset.d.ts +1 -0
  365. package/lib/front_end/third_party/third-party-web/package/httparchive-subset.js +1 -0
  366. package/lib/front_end/third_party/third-party-web/package/lib/__snapshots__/index.test.js.snap +1006 -0
  367. package/lib/front_end/third_party/third-party-web/package/lib/create-entity-finder-api.js +139 -0
  368. package/lib/front_end/third_party/third-party-web/package/lib/create-entity-finder-api.test.js +44 -0
  369. package/lib/front_end/third_party/third-party-web/package/lib/entities.test.js +27 -0
  370. package/lib/front_end/third_party/third-party-web/package/lib/index.d.ts +34 -0
  371. package/lib/front_end/third_party/third-party-web/package/lib/index.js +3 -0
  372. package/lib/front_end/third_party/third-party-web/package/lib/index.test.js +246 -0
  373. package/lib/front_end/third_party/third-party-web/package/lib/markdown/faqs.partial.md +36 -0
  374. package/lib/front_end/third_party/third-party-web/package/lib/markdown/goals.partial.md +9 -0
  375. package/lib/front_end/third_party/third-party-web/package/lib/markdown/methodology.partial.md +5 -0
  376. package/lib/front_end/third_party/third-party-web/package/lib/markdown/template.md +151 -0
  377. package/lib/front_end/third_party/third-party-web/package/lib/markdown/updates/2019-02-01.md +1 -0
  378. package/lib/front_end/third_party/third-party-web/package/lib/markdown/updates/2019-03-01.md +1 -0
  379. package/lib/front_end/third_party/third-party-web/package/lib/markdown/updates/2019-05-06.md +1 -0
  380. package/lib/front_end/third_party/third-party-web/package/lib/markdown/updates/2019-05-13.md +14 -0
  381. package/lib/front_end/third_party/third-party-web/package/lib/markdown/updates/2021-01-01.md +1 -0
  382. package/lib/front_end/third_party/third-party-web/package/lib/markdown/updates/2024-07-01.md +3 -0
  383. package/lib/front_end/third_party/third-party-web/package/lib/subsets/httparchive-nostats.d.ts +1 -0
  384. package/lib/front_end/third_party/third-party-web/package/lib/subsets/httparchive-nostats.js +3 -0
  385. package/lib/front_end/third_party/third-party-web/package/lib/subsets/httparchive.d.ts +1 -0
  386. package/lib/front_end/third_party/third-party-web/package/lib/subsets/httparchive.js +3 -0
  387. package/lib/front_end/third_party/third-party-web/package/lib/subsets/nostats.d.ts +1 -0
  388. package/lib/front_end/third_party/third-party-web/package/lib/subsets/nostats.js +3 -0
  389. package/lib/front_end/third_party/third-party-web/package/nostats-subset.d.ts +1 -0
  390. package/lib/front_end/third_party/third-party-web/package/nostats-subset.js +1 -0
  391. package/lib/front_end/third_party/third-party-web/package/package.json +46 -0
  392. package/lib/front_end/third_party/third-party-web/package.json +8 -0
  393. package/lib/front_end/third_party/third-party-web/rebuild.sh +13 -0
  394. package/lib/front_end/third_party/third-party-web/third-party-web-tsconfig.json +8 -0
  395. package/lib/front_end/third_party/third-party-web/third-party-web.ts +3 -0
  396. package/package.json +24 -0
  397. package/patches/chrome-devtools-frontend+1.0.1533544.patch +187 -0
@@ -0,0 +1,1605 @@
1
+ // Copyright 2010 The Chromium Authors
2
+ // Use of this source code is governed by a BSD-style license that can be
3
+ // found in the LICENSE file.
4
+
5
+ import type * as ProtocolProxyApi from '../../generated/protocol-proxy-api.js';
6
+ import * as Protocol from '../../generated/protocol.js';
7
+ import * as Common from '../common/common.js';
8
+ import * as Host from '../host/host.js';
9
+ import * as i18n from '../i18n/i18n.js';
10
+ import * as Platform from '../platform/platform.js';
11
+ import * as Root from '../root/root.js';
12
+
13
+ import type {PageResourceLoadInitiator} from './PageResourceLoader.js';
14
+ import {type GetPropertiesResult, type RemoteObject, RemoteObjectProperty, ScopeRef} from './RemoteObject.js';
15
+ import {Events as ResourceTreeModelEvents, ResourceTreeModel} from './ResourceTreeModel.js';
16
+ import {type EvaluationOptions, type EvaluationResult, type ExecutionContext, RuntimeModel} from './RuntimeModel.js';
17
+ import {Script} from './Script.js';
18
+ import {SDKModel} from './SDKModel.js';
19
+ import {SourceMap} from './SourceMap.js';
20
+ import {SourceMapManager} from './SourceMapManager.js';
21
+ import {Capability, type Target, Type} from './Target.js';
22
+
23
+ const UIStrings = {
24
+ /**
25
+ * @description Title of a section in the debugger showing local JavaScript variables.
26
+ */
27
+ local: 'Local',
28
+ /**
29
+ * @description Text that refers to closure as a programming term
30
+ */
31
+ closure: 'Closure',
32
+ /**
33
+ * @description Noun that represents a section or block of code in the Debugger Model. Shown in the Sources tab, while paused on a breakpoint.
34
+ */
35
+ block: 'Block',
36
+ /**
37
+ * @description Label for a group of JavaScript files
38
+ */
39
+ script: 'Script',
40
+ /**
41
+ * @description Title of a section in the debugger showing JavaScript variables from the a 'with'
42
+ *block. Block here means section of code, 'with' refers to a JavaScript programming concept and
43
+ *is a fixed term.
44
+ */
45
+ withBlock: '`With` block',
46
+ /**
47
+ * @description Title of a section in the debugger showing JavaScript variables from the a 'catch'
48
+ *block. Block here means section of code, 'catch' refers to a JavaScript programming concept and
49
+ *is a fixed term.
50
+ */
51
+ catchBlock: '`Catch` block',
52
+ /**
53
+ * @description Title of a section in the debugger showing JavaScript variables from the global scope.
54
+ */
55
+ global: 'Global',
56
+ /**
57
+ * @description Text for a JavaScript module, the programming concept
58
+ */
59
+ module: 'Module',
60
+ /**
61
+ * @description Text describing the expression scope in WebAssembly
62
+ */
63
+ expression: 'Expression',
64
+ /**
65
+ * @description Text in Scope Chain Sidebar Pane of the Sources panel
66
+ */
67
+ exception: 'Exception',
68
+ /**
69
+ * @description Text in Scope Chain Sidebar Pane of the Sources panel
70
+ */
71
+ returnValue: 'Return value',
72
+ } as const;
73
+ const str_ = i18n.i18n.registerUIStrings('core/sdk/DebuggerModel.ts', UIStrings);
74
+ const i18nString = i18n.i18n.getLocalizedString.bind(undefined, str_);
75
+
76
+ export function sortAndMergeRanges(locationRanges: Protocol.Debugger.LocationRange[]):
77
+ Protocol.Debugger.LocationRange[] {
78
+ function compare(p1: Protocol.Debugger.ScriptPosition, p2: Protocol.Debugger.ScriptPosition): number {
79
+ return (p1.lineNumber - p2.lineNumber) || (p1.columnNumber - p2.columnNumber);
80
+ }
81
+ function overlap(r1: Protocol.Debugger.LocationRange, r2: Protocol.Debugger.LocationRange): boolean {
82
+ if (r1.scriptId !== r2.scriptId) {
83
+ return false;
84
+ }
85
+ const n = compare(r1.start, r2.start);
86
+ if (n < 0) {
87
+ return compare(r1.end, r2.start) >= 0;
88
+ }
89
+ if (n > 0) {
90
+ return compare(r1.start, r2.end) <= 0;
91
+ }
92
+ return true;
93
+ }
94
+
95
+ if (locationRanges.length === 0) {
96
+ return [];
97
+ }
98
+ locationRanges.sort((r1, r2) => {
99
+ if (r1.scriptId < r2.scriptId) {
100
+ return -1;
101
+ }
102
+ if (r1.scriptId > r2.scriptId) {
103
+ return 1;
104
+ }
105
+ return compare(r1.start, r2.start) || compare(r1.end, r2.end);
106
+ });
107
+ let prev = locationRanges[0];
108
+ const merged = [];
109
+ for (let i = 1; i < locationRanges.length; ++i) {
110
+ const curr = locationRanges[i];
111
+ if (overlap(prev, curr)) {
112
+ if (compare(prev.end, curr.end) <= 0) {
113
+ prev = {...prev, end: curr.end};
114
+ }
115
+ } else {
116
+ merged.push(prev);
117
+ prev = curr;
118
+ }
119
+ }
120
+ merged.push(prev);
121
+ return merged;
122
+ }
123
+
124
+ export const enum StepMode {
125
+ STEP_INTO = 'StepInto',
126
+ STEP_OUT = 'StepOut',
127
+ STEP_OVER = 'StepOver',
128
+ }
129
+
130
+ export const WASM_SYMBOLS_PRIORITY = [
131
+ Protocol.Debugger.DebugSymbolsType.ExternalDWARF,
132
+ Protocol.Debugger.DebugSymbolsType.EmbeddedDWARF,
133
+ Protocol.Debugger.DebugSymbolsType.SourceMap,
134
+ ];
135
+
136
+ export class DebuggerModel extends SDKModel<EventTypes> {
137
+ readonly agent: ProtocolProxyApi.DebuggerApi;
138
+ #runtimeModel: RuntimeModel;
139
+ readonly #sourceMapManager: SourceMapManager<Script>;
140
+ #debuggerPausedDetails: DebuggerPausedDetails|null = null;
141
+ readonly #scripts = new Map<string, Script>();
142
+ readonly #scriptsBySourceURL = new Map<string, Script[]>();
143
+ #discardableScripts: Script[] = [];
144
+ continueToLocationCallback: ((arg0: DebuggerPausedDetails) => boolean)|null = null;
145
+ #selectedCallFrame: CallFrame|null = null;
146
+ #debuggerEnabled = false;
147
+ #debuggerId: string|null = null;
148
+ #skipAllPausesTimeout = 0;
149
+ #beforePausedCallback: ((arg0: DebuggerPausedDetails, stepOver: Location|null) => Promise<boolean>)|null = null;
150
+ #computeAutoStepRangesCallback: ((arg0: StepMode, arg1: CallFrame) => Promise<Array<{
151
+ start: Location,
152
+ end: Location,
153
+ }>>)|null = null;
154
+ #expandCallFramesCallback: ((arg0: CallFrame[]) => Promise<CallFrame[]>)|null = null;
155
+ evaluateOnCallFrameCallback:
156
+ ((arg0: CallFrame, arg1: EvaluationOptions) => Promise<EvaluationResult|null>)|null = null;
157
+ #synchronizeBreakpointsCallback: ((script: Script) => Promise<void>)|null = null;
158
+ // We need to be able to register listeners for individual breakpoints. As such, we dispatch
159
+ // on breakpoint ids, which are not statically known. The event #payload will always be a `Location`.
160
+ readonly #breakpointResolvedEventTarget = new Common.ObjectWrapper.ObjectWrapper<Record<string, Location>>();
161
+ // When stepping over with autostepping enabled, the context denotes the function to which autostepping is restricted
162
+ // to by way of its functionLocation (as per Debugger.CallFrame).
163
+ #autoSteppingContext: Location|null = null;
164
+ #isPausing = false;
165
+
166
+ constructor(target: Target) {
167
+ super(target);
168
+
169
+ target.registerDebuggerDispatcher(new DebuggerDispatcher(this));
170
+ this.agent = target.debuggerAgent();
171
+ this.#runtimeModel = (target.model(RuntimeModel) as RuntimeModel);
172
+
173
+ this.#sourceMapManager = new SourceMapManager(
174
+ target,
175
+ (compiledURL, sourceMappingURL, payload, script) =>
176
+ new SourceMap(compiledURL, sourceMappingURL, payload, script));
177
+
178
+ Common.Settings.Settings.instance()
179
+ .moduleSetting('pause-on-exception-enabled')
180
+ .addChangeListener(this.pauseOnExceptionStateChanged, this);
181
+ Common.Settings.Settings.instance()
182
+ .moduleSetting('pause-on-caught-exception')
183
+ .addChangeListener(this.pauseOnExceptionStateChanged, this);
184
+ Common.Settings.Settings.instance()
185
+ .moduleSetting('pause-on-uncaught-exception')
186
+ .addChangeListener(this.pauseOnExceptionStateChanged, this);
187
+ Common.Settings.Settings.instance()
188
+ .moduleSetting('disable-async-stack-traces')
189
+ .addChangeListener(this.asyncStackTracesStateChanged, this);
190
+ Common.Settings.Settings.instance()
191
+ .moduleSetting('breakpoints-active')
192
+ .addChangeListener(this.breakpointsActiveChanged, this);
193
+
194
+ if (!target.suspended()) {
195
+ void this.enableDebugger();
196
+ }
197
+
198
+ this.#sourceMapManager.setEnabled(
199
+ Common.Settings.Settings.instance().moduleSetting('js-source-maps-enabled').get());
200
+ Common.Settings.Settings.instance()
201
+ .moduleSetting('js-source-maps-enabled')
202
+ .addChangeListener(event => this.#sourceMapManager.setEnabled((event.data as boolean)));
203
+
204
+ const resourceTreeModel = (target.model(ResourceTreeModel) as ResourceTreeModel);
205
+ if (resourceTreeModel) {
206
+ resourceTreeModel.addEventListener(ResourceTreeModelEvents.FrameNavigated, this.onFrameNavigated, this);
207
+ }
208
+ }
209
+
210
+ static selectSymbolSource(debugSymbols: Protocol.Debugger.DebugSymbols[]|null): Protocol.Debugger.DebugSymbols|null {
211
+ if (!debugSymbols || debugSymbols.length === 0) {
212
+ return null;
213
+ }
214
+
215
+ // Provides backwards compatibility to previous CDP version on Protocol.Debugger.DebugSymbols.
216
+ // TODO(crbug.com/369515221): Remove extra code as soon as old v8 versions used in Node are no longer supported.
217
+ if ('type' in debugSymbols) {
218
+ if (debugSymbols.type === 'None') {
219
+ return null;
220
+ }
221
+ return debugSymbols as Protocol.Debugger.DebugSymbols;
222
+ }
223
+
224
+ let debugSymbolsSource = null;
225
+ const symbolTypes = new Map(debugSymbols.map(symbol => [symbol.type, symbol]));
226
+ for (const symbol of WASM_SYMBOLS_PRIORITY) {
227
+ if (symbolTypes.has(symbol)) {
228
+ debugSymbolsSource = symbolTypes.get(symbol) || null;
229
+ break;
230
+ }
231
+ }
232
+
233
+ console.assert(
234
+ debugSymbolsSource !== null,
235
+ 'Unknown symbol types. Front-end and back-end should be kept in sync regarding Protocol.Debugger.DebugSymbolTypes');
236
+ if (debugSymbolsSource && debugSymbols.length > 1) {
237
+ Common.Console.Console.instance().warn(
238
+ `Multiple debug symbols for script were found. Using ${debugSymbolsSource.type}`);
239
+ }
240
+ return debugSymbolsSource;
241
+ }
242
+
243
+ sourceMapManager(): SourceMapManager<Script> {
244
+ return this.#sourceMapManager;
245
+ }
246
+
247
+ runtimeModel(): RuntimeModel {
248
+ return this.#runtimeModel;
249
+ }
250
+
251
+ debuggerEnabled(): boolean {
252
+ return Boolean(this.#debuggerEnabled);
253
+ }
254
+
255
+ debuggerId(): string|null {
256
+ return this.#debuggerId;
257
+ }
258
+
259
+ private async enableDebugger(): Promise<void> {
260
+ if (this.#debuggerEnabled) {
261
+ return;
262
+ }
263
+ this.#debuggerEnabled = true;
264
+
265
+ // Set a limit for the total size of collected script sources retained by debugger.
266
+ // 10MB for remote frontends, 100MB for others.
267
+ const isRemoteFrontend = Root.Runtime.Runtime.queryParam('remoteFrontend') || Root.Runtime.Runtime.queryParam('ws');
268
+ const maxScriptsCacheSize = isRemoteFrontend ? 10e6 : 100e6;
269
+ const enablePromise = this.agent.invoke_enable({maxScriptsCacheSize});
270
+ let instrumentationPromise: Promise<Protocol.Debugger.SetInstrumentationBreakpointResponse>|undefined;
271
+ if (Root.Runtime.experiments.isEnabled(Root.Runtime.ExperimentName.INSTRUMENTATION_BREAKPOINTS)) {
272
+ instrumentationPromise = this.agent.invoke_setInstrumentationBreakpoint({
273
+ instrumentation: Protocol.Debugger.SetInstrumentationBreakpointRequestInstrumentation.BeforeScriptExecution,
274
+ });
275
+ }
276
+ this.pauseOnExceptionStateChanged();
277
+ void this.asyncStackTracesStateChanged();
278
+ if (!Common.Settings.Settings.instance().moduleSetting('breakpoints-active').get()) {
279
+ this.breakpointsActiveChanged();
280
+ }
281
+ this.dispatchEventToListeners(Events.DebuggerWasEnabled, this);
282
+ const [enableResult] = await Promise.all([enablePromise, instrumentationPromise]);
283
+ this.registerDebugger(enableResult);
284
+ }
285
+
286
+ async syncDebuggerId(): Promise<Protocol.Debugger.EnableResponse> {
287
+ const isRemoteFrontend = Root.Runtime.Runtime.queryParam('remoteFrontend') || Root.Runtime.Runtime.queryParam('ws');
288
+ const maxScriptsCacheSize = isRemoteFrontend ? 10e6 : 100e6;
289
+ const enablePromise = this.agent.invoke_enable({maxScriptsCacheSize});
290
+ void enablePromise.then(this.registerDebugger.bind(this));
291
+ return await enablePromise;
292
+ }
293
+
294
+ private onFrameNavigated(): void {
295
+ if (DebuggerModel.shouldResyncDebuggerId) {
296
+ return;
297
+ }
298
+
299
+ DebuggerModel.shouldResyncDebuggerId = true;
300
+ }
301
+
302
+ private registerDebugger(response: Protocol.Debugger.EnableResponse): void {
303
+ if (response.getError()) {
304
+ this.#debuggerEnabled = false;
305
+ return;
306
+ }
307
+ const {debuggerId} = response;
308
+ debuggerIdToModel.set(debuggerId, this);
309
+ this.#debuggerId = debuggerId;
310
+ this.dispatchEventToListeners(Events.DebuggerIsReadyToPause, this);
311
+ }
312
+
313
+ isReadyToPause(): boolean {
314
+ return Boolean(this.#debuggerId);
315
+ }
316
+
317
+ static async modelForDebuggerId(debuggerId: string): Promise<DebuggerModel|null> {
318
+ if (DebuggerModel.shouldResyncDebuggerId) {
319
+ await DebuggerModel.resyncDebuggerIdForModels();
320
+ DebuggerModel.shouldResyncDebuggerId = false;
321
+ }
322
+ return debuggerIdToModel.get(debuggerId) || null;
323
+ }
324
+
325
+ static async resyncDebuggerIdForModels(): Promise<void> {
326
+ const dbgModels = debuggerIdToModel.values();
327
+ for (const dbgModel of dbgModels) {
328
+ if (dbgModel.debuggerEnabled()) {
329
+ await dbgModel.syncDebuggerId();
330
+ }
331
+ }
332
+ }
333
+
334
+ private async disableDebugger(): Promise<void> {
335
+ if (!this.#debuggerEnabled) {
336
+ return;
337
+ }
338
+ this.#debuggerEnabled = false;
339
+
340
+ await this.asyncStackTracesStateChanged();
341
+ await this.agent.invoke_disable();
342
+ this.#isPausing = false;
343
+ this.globalObjectCleared();
344
+ this.dispatchEventToListeners(Events.DebuggerWasDisabled, this);
345
+ if (typeof this.#debuggerId === 'string') {
346
+ debuggerIdToModel.delete(this.#debuggerId);
347
+ }
348
+ this.#debuggerId = null;
349
+ }
350
+
351
+ private skipAllPauses(skip: boolean): void {
352
+ if (this.#skipAllPausesTimeout) {
353
+ clearTimeout(this.#skipAllPausesTimeout);
354
+ this.#skipAllPausesTimeout = 0;
355
+ }
356
+ void this.agent.invoke_setSkipAllPauses({skip});
357
+ }
358
+
359
+ skipAllPausesUntilReloadOrTimeout(timeout: number): void {
360
+ if (this.#skipAllPausesTimeout) {
361
+ clearTimeout(this.#skipAllPausesTimeout);
362
+ }
363
+ void this.agent.invoke_setSkipAllPauses({skip: true});
364
+ // If reload happens before the timeout, the flag will be already unset and the timeout callback won't change anything.
365
+ this.#skipAllPausesTimeout = window.setTimeout(this.skipAllPauses.bind(this, false), timeout);
366
+ }
367
+
368
+ private pauseOnExceptionStateChanged(): void {
369
+ const pauseOnCaughtEnabled = Common.Settings.Settings.instance().moduleSetting('pause-on-caught-exception').get();
370
+ let state: Protocol.Debugger.SetPauseOnExceptionsRequestState;
371
+
372
+ const pauseOnUncaughtEnabled =
373
+ Common.Settings.Settings.instance().moduleSetting('pause-on-uncaught-exception').get();
374
+ if (pauseOnCaughtEnabled && pauseOnUncaughtEnabled) {
375
+ state = Protocol.Debugger.SetPauseOnExceptionsRequestState.All;
376
+ } else if (pauseOnCaughtEnabled) {
377
+ state = Protocol.Debugger.SetPauseOnExceptionsRequestState.Caught;
378
+ } else if (pauseOnUncaughtEnabled) {
379
+ state = Protocol.Debugger.SetPauseOnExceptionsRequestState.Uncaught;
380
+ } else {
381
+ state = Protocol.Debugger.SetPauseOnExceptionsRequestState.None;
382
+ }
383
+ void this.agent.invoke_setPauseOnExceptions({state});
384
+ }
385
+
386
+ private asyncStackTracesStateChanged(): Promise<Protocol.ProtocolResponseWithError> {
387
+ const maxAsyncStackChainDepth = 32;
388
+ const enabled =
389
+ !Common.Settings.Settings.instance().moduleSetting('disable-async-stack-traces').get() && this.#debuggerEnabled;
390
+ const maxDepth = enabled ? maxAsyncStackChainDepth : 0;
391
+ return this.agent.invoke_setAsyncCallStackDepth({maxDepth});
392
+ }
393
+
394
+ private breakpointsActiveChanged(): void {
395
+ void this.agent.invoke_setBreakpointsActive(
396
+ {active: Common.Settings.Settings.instance().moduleSetting('breakpoints-active').get()});
397
+ }
398
+
399
+ setComputeAutoStepRangesCallback(callback: ((arg0: StepMode, arg1: CallFrame) => Promise<LocationRange[]>)|null):
400
+ void {
401
+ this.#computeAutoStepRangesCallback = callback;
402
+ }
403
+
404
+ private async computeAutoStepSkipList(mode: StepMode): Promise<Protocol.Debugger.LocationRange[]> {
405
+ let ranges: LocationRange[] = [];
406
+ if (this.#computeAutoStepRangesCallback && this.#debuggerPausedDetails &&
407
+ this.#debuggerPausedDetails.callFrames.length > 0) {
408
+ const [callFrame] = this.#debuggerPausedDetails.callFrames;
409
+ ranges = await this.#computeAutoStepRangesCallback.call(null, mode, callFrame);
410
+ }
411
+ const skipList = ranges.map(({start, end}) => ({
412
+ scriptId: start.scriptId,
413
+ start: {lineNumber: start.lineNumber, columnNumber: start.columnNumber},
414
+ end: {lineNumber: end.lineNumber, columnNumber: end.columnNumber},
415
+ }));
416
+ return sortAndMergeRanges(skipList);
417
+ }
418
+
419
+ async stepInto(): Promise<void> {
420
+ const skipList = await this.computeAutoStepSkipList(StepMode.STEP_INTO);
421
+ void this.agent.invoke_stepInto({breakOnAsyncCall: false, skipList});
422
+ }
423
+
424
+ async stepOver(): Promise<void> {
425
+ this.#autoSteppingContext = this.#debuggerPausedDetails?.callFrames[0]?.functionLocation() ?? null;
426
+ const skipList = await this.computeAutoStepSkipList(StepMode.STEP_OVER);
427
+ void this.agent.invoke_stepOver({skipList});
428
+ }
429
+
430
+ async stepOut(): Promise<void> {
431
+ const skipList = await this.computeAutoStepSkipList(StepMode.STEP_OUT);
432
+ if (skipList.length !== 0) {
433
+ void this.agent.invoke_stepOver({skipList});
434
+ } else {
435
+ void this.agent.invoke_stepOut();
436
+ }
437
+ }
438
+
439
+ scheduleStepIntoAsync(): void {
440
+ void this.computeAutoStepSkipList(StepMode.STEP_INTO).then(skipList => {
441
+ void this.agent.invoke_stepInto({breakOnAsyncCall: true, skipList});
442
+ });
443
+ }
444
+
445
+ resume(): void {
446
+ void this.agent.invoke_resume({terminateOnResume: false});
447
+ this.#isPausing = false;
448
+ }
449
+
450
+ pause(): void {
451
+ this.#isPausing = true;
452
+ this.skipAllPauses(false);
453
+ void this.agent.invoke_pause();
454
+ }
455
+
456
+ async setBreakpointByURL(
457
+ url: Platform.DevToolsPath.UrlString, lineNumber: number, columnNumber?: number,
458
+ condition?: BackendCondition): Promise<SetBreakpointResult> {
459
+ // Convert file url to node-js path.
460
+ let urlRegex;
461
+ if (this.target().type() === Type.NODE && Common.ParsedURL.schemeIs(url, 'file:')) {
462
+ const platformPath = Common.ParsedURL.ParsedURL.urlToRawPathString(url, Host.Platform.isWin());
463
+ urlRegex =
464
+ `${Platform.StringUtilities.escapeForRegExp(platformPath)}|${Platform.StringUtilities.escapeForRegExp(url)}`;
465
+ if (Host.Platform.isWin() && platformPath.match(/^.:\\/)) {
466
+ // Match upper or lower case drive letter
467
+ urlRegex = `[${platformPath[0].toUpperCase()}${platformPath[0].toLowerCase()}]` + urlRegex.substr(1);
468
+ }
469
+ }
470
+ // Adjust column if needed.
471
+ let minColumnNumber = 0;
472
+ const scripts = this.#scriptsBySourceURL.get(url) || [];
473
+ for (let i = 0, l = scripts.length; i < l; ++i) {
474
+ const script = scripts[i];
475
+ if (lineNumber === script.lineOffset) {
476
+ minColumnNumber = minColumnNumber ? Math.min(minColumnNumber, script.columnOffset) : script.columnOffset;
477
+ }
478
+ }
479
+ columnNumber = Math.max(columnNumber || 0, minColumnNumber);
480
+ const response = await this.agent.invoke_setBreakpointByUrl({
481
+ lineNumber,
482
+ url: urlRegex ? undefined : url,
483
+ urlRegex,
484
+ columnNumber,
485
+ condition,
486
+ });
487
+ if (response.getError()) {
488
+ return {locations: [], breakpointId: null};
489
+ }
490
+ let locations: Location[] = [];
491
+ if (response.locations) {
492
+ locations = response.locations.map(payload => Location.fromPayload(this, payload));
493
+ }
494
+ return {locations, breakpointId: response.breakpointId};
495
+ }
496
+
497
+ async setBreakpointInAnonymousScript(
498
+ scriptHash: string, lineNumber: number, columnNumber?: number,
499
+ condition?: BackendCondition): Promise<SetBreakpointResult> {
500
+ const response = await this.agent.invoke_setBreakpointByUrl({lineNumber, scriptHash, columnNumber, condition});
501
+ if (response.getError()) {
502
+ return {locations: [], breakpointId: null};
503
+ }
504
+ let locations: Location[] = [];
505
+ if (response.locations) {
506
+ locations = response.locations.map(payload => Location.fromPayload(this, payload));
507
+ }
508
+ return {locations, breakpointId: response.breakpointId};
509
+ }
510
+
511
+ async removeBreakpoint(breakpointId: Protocol.Debugger.BreakpointId): Promise<void> {
512
+ await this.agent.invoke_removeBreakpoint({breakpointId});
513
+ }
514
+
515
+ async getPossibleBreakpoints(startLocation: Location, endLocation: Location|null, restrictToFunction: boolean):
516
+ Promise<BreakLocation[]> {
517
+ const response = await this.agent.invoke_getPossibleBreakpoints({
518
+ start: startLocation.payload(),
519
+ end: endLocation ? endLocation.payload() : undefined,
520
+ restrictToFunction,
521
+ });
522
+ if (response.getError() || !response.locations) {
523
+ return [];
524
+ }
525
+ return response.locations.map(location => BreakLocation.fromPayload(this, location));
526
+ }
527
+
528
+ async fetchAsyncStackTrace(stackId: Protocol.Runtime.StackTraceId): Promise<Protocol.Runtime.StackTrace|null> {
529
+ const response = await this.agent.invoke_getStackTrace({stackTraceId: stackId});
530
+ return response.getError() ? null : response.stackTrace;
531
+ }
532
+
533
+ breakpointResolved(breakpointId: string, location: Protocol.Debugger.Location): void {
534
+ this.#breakpointResolvedEventTarget.dispatchEventToListeners(breakpointId, Location.fromPayload(this, location));
535
+ }
536
+
537
+ globalObjectCleared(): void {
538
+ this.resetDebuggerPausedDetails();
539
+ this.reset();
540
+ // TODO(dgozman): move clients to ExecutionContextDestroyed/ScriptCollected events.
541
+ this.dispatchEventToListeners(Events.GlobalObjectCleared, this);
542
+ }
543
+
544
+ private reset(): void {
545
+ for (const script of this.#scripts.values()) {
546
+ this.#sourceMapManager.detachSourceMap(script);
547
+ }
548
+ this.#scripts.clear();
549
+ this.#scriptsBySourceURL.clear();
550
+ this.#discardableScripts = [];
551
+ this.#autoSteppingContext = null;
552
+ }
553
+
554
+ scripts(): Script[] {
555
+ return Array.from(this.#scripts.values());
556
+ }
557
+
558
+ scriptForId(scriptId: string): Script|null {
559
+ return this.#scripts.get(scriptId) || null;
560
+ }
561
+
562
+ /**
563
+ * Returns all `Script` objects with the same provided `sourceURL`. The
564
+ * resulting array is sorted by time with the newest `Script` in the front.
565
+ */
566
+ scriptsForSourceURL(sourceURL: string): Script[] {
567
+ return this.#scriptsBySourceURL.get(sourceURL) || [];
568
+ }
569
+
570
+ scriptsForExecutionContext(executionContext: ExecutionContext): Script[] {
571
+ const result = [];
572
+ for (const script of this.#scripts.values()) {
573
+ if (script.executionContextId === executionContext.id) {
574
+ result.push(script);
575
+ }
576
+ }
577
+ return result;
578
+ }
579
+
580
+ get callFrames(): CallFrame[]|null {
581
+ return this.#debuggerPausedDetails ? this.#debuggerPausedDetails.callFrames : null;
582
+ }
583
+
584
+ debuggerPausedDetails(): DebuggerPausedDetails|null {
585
+ return this.#debuggerPausedDetails;
586
+ }
587
+
588
+ private async setDebuggerPausedDetails(debuggerPausedDetails: DebuggerPausedDetails): Promise<boolean> {
589
+ this.#isPausing = false;
590
+ this.#debuggerPausedDetails = debuggerPausedDetails;
591
+ if (this.#beforePausedCallback) {
592
+ if (!await this.#beforePausedCallback.call(null, debuggerPausedDetails, this.#autoSteppingContext)) {
593
+ return false;
594
+ }
595
+ }
596
+ // If we resolved a location in auto-stepping callback, reset the
597
+ // auto-step-over context.
598
+ this.#autoSteppingContext = null;
599
+ this.dispatchEventToListeners(Events.DebuggerPaused, this);
600
+ this.setSelectedCallFrame(debuggerPausedDetails.callFrames[0]);
601
+ return true;
602
+ }
603
+
604
+ private resetDebuggerPausedDetails(): void {
605
+ this.#isPausing = false;
606
+ this.#debuggerPausedDetails = null;
607
+ this.setSelectedCallFrame(null);
608
+ }
609
+
610
+ setBeforePausedCallback(
611
+ callback: ((arg0: DebuggerPausedDetails, autoSteppingContext: Location|null) => Promise<boolean>)|null): void {
612
+ this.#beforePausedCallback = callback;
613
+ }
614
+
615
+ setExpandCallFramesCallback(callback: ((arg0: CallFrame[]) => Promise<CallFrame[]>)|null): void {
616
+ this.#expandCallFramesCallback = callback;
617
+ }
618
+
619
+ setEvaluateOnCallFrameCallback(
620
+ callback: ((arg0: CallFrame, arg1: EvaluationOptions) => Promise<EvaluationResult|null>)|null): void {
621
+ this.evaluateOnCallFrameCallback = callback;
622
+ }
623
+
624
+ setSynchronizeBreakpointsCallback(callback: ((script: Script) => Promise<void>)|null): void {
625
+ this.#synchronizeBreakpointsCallback = callback;
626
+ }
627
+
628
+ async pausedScript(
629
+ callFrames: Protocol.Debugger.CallFrame[], reason: Protocol.Debugger.PausedEventReason, auxData: Object|undefined,
630
+ breakpointIds: string[], asyncStackTrace?: Protocol.Runtime.StackTrace,
631
+ asyncStackTraceId?: Protocol.Runtime.StackTraceId): Promise<void> {
632
+ if (reason === Protocol.Debugger.PausedEventReason.Instrumentation) {
633
+ const script = this.scriptForId((auxData as PausedOnInstrumentationData).scriptId);
634
+ if (this.#synchronizeBreakpointsCallback && script) {
635
+ await this.#synchronizeBreakpointsCallback(script);
636
+ }
637
+ this.resume();
638
+ return;
639
+ }
640
+
641
+ const pausedDetails =
642
+ new DebuggerPausedDetails(this, callFrames, reason, auxData, breakpointIds, asyncStackTrace, asyncStackTraceId);
643
+ await this.#expandCallFrames(pausedDetails);
644
+
645
+ if (this.continueToLocationCallback) {
646
+ const callback = this.continueToLocationCallback;
647
+ this.continueToLocationCallback = null;
648
+ if (callback(pausedDetails)) {
649
+ return;
650
+ }
651
+ }
652
+
653
+ if (!await this.setDebuggerPausedDetails(pausedDetails)) {
654
+ if (this.#autoSteppingContext) {
655
+ void this.stepOver();
656
+ } else {
657
+ void this.stepInto();
658
+ }
659
+ } else {
660
+ Common.EventTarget.fireEvent('DevTools.DebuggerPaused');
661
+ }
662
+ }
663
+
664
+ /** Delegates to the DebuggerLanguagePlugin and potential attached source maps to expand inlined call frames */
665
+ async #expandCallFrames(pausedDetails: DebuggerPausedDetails): Promise<void> {
666
+ if (this.#expandCallFramesCallback) {
667
+ pausedDetails.callFrames = await this.#expandCallFramesCallback.call(null, pausedDetails.callFrames);
668
+ }
669
+
670
+ if (!Root.Runtime.experiments.isEnabled(Root.Runtime.ExperimentName.USE_SOURCE_MAP_SCOPES)) {
671
+ return;
672
+ }
673
+
674
+ // TODO(crbug.com/40277685): Support attaching/detaching source maps after pausing.
675
+ // Expanding call frames via source maps here is only suitable for the experiment prototype because
676
+ // we block until all relevant source maps are loaded.
677
+ // We should change this so the "Debugger Plugin" and "Source Map" have a bottle neck where they expand
678
+ // call frames and that bottleneck should support attaching/detaching source maps while paused.
679
+ const finalFrames: CallFrame[] = [];
680
+ for (const frame of pausedDetails.callFrames) {
681
+ const sourceMap = await this.sourceMapManager().sourceMapForClientPromise(frame.script);
682
+ if (sourceMap?.hasScopeInfo()) {
683
+ finalFrames.push(...sourceMap.expandCallFrame(frame));
684
+ } else {
685
+ finalFrames.push(frame);
686
+ }
687
+ }
688
+ pausedDetails.callFrames = finalFrames;
689
+ }
690
+
691
+ resumedScript(): void {
692
+ this.resetDebuggerPausedDetails();
693
+ this.dispatchEventToListeners(Events.DebuggerResumed, this);
694
+ }
695
+
696
+ parsedScriptSource(
697
+ scriptId: Protocol.Runtime.ScriptId, sourceURL: Platform.DevToolsPath.UrlString, startLine: number,
698
+ startColumn: number, endLine: number, endColumn: number,
699
+ // TODO(crbug.com/1172300) Ignored during the jsdoc to ts migration
700
+ // eslint-disable-next-line @typescript-eslint/no-explicit-any
701
+ executionContextId: number, hash: string, executionContextAuxData: any, isLiveEdit: boolean,
702
+ sourceMapURL: string|undefined, hasSourceURLComment: boolean, hasSyntaxError: boolean, length: number,
703
+ isModule: boolean|null, originStackTrace: Protocol.Runtime.StackTrace|null, codeOffset: number|null,
704
+ scriptLanguage: string|null, debugSymbols: Protocol.Debugger.DebugSymbols[]|null,
705
+ embedderName: Platform.DevToolsPath.UrlString|null, buildId: string|null): Script {
706
+ const knownScript = this.#scripts.get(scriptId);
707
+ if (knownScript) {
708
+ return knownScript;
709
+ }
710
+ let isContentScript = false;
711
+ if (executionContextAuxData && ('isDefault' in executionContextAuxData)) {
712
+ isContentScript = !executionContextAuxData['isDefault'];
713
+ }
714
+
715
+ const selectedDebugSymbol = DebuggerModel.selectSymbolSource(debugSymbols);
716
+ const script = new Script(
717
+ this, scriptId, sourceURL, startLine, startColumn, endLine, endColumn, executionContextId, hash,
718
+ isContentScript, isLiveEdit, sourceMapURL, hasSourceURLComment, length, isModule, originStackTrace, codeOffset,
719
+ scriptLanguage, selectedDebugSymbol, embedderName, buildId);
720
+ this.registerScript(script);
721
+ this.dispatchEventToListeners(Events.ParsedScriptSource, script);
722
+
723
+ if (script.sourceMapURL && !hasSyntaxError) {
724
+ this.#sourceMapManager.attachSourceMap(script, script.sourceURL, script.sourceMapURL);
725
+ }
726
+
727
+ const isDiscardable = hasSyntaxError && script.isAnonymousScript();
728
+ if (isDiscardable) {
729
+ this.#discardableScripts.push(script);
730
+ this.collectDiscardedScripts();
731
+ }
732
+ return script;
733
+ }
734
+
735
+ setSourceMapURL(script: Script, newSourceMapURL: Platform.DevToolsPath.UrlString): void {
736
+ // Detach any previous source map from the `script` first.
737
+ this.#sourceMapManager.detachSourceMap(script);
738
+ script.sourceMapURL = newSourceMapURL;
739
+ this.#sourceMapManager.attachSourceMap(script, script.sourceURL, script.sourceMapURL);
740
+ }
741
+
742
+ async setDebugInfoURL(script: Script, _externalURL: Platform.DevToolsPath.UrlString): Promise<void> {
743
+ if (this.#expandCallFramesCallback && this.#debuggerPausedDetails) {
744
+ this.#debuggerPausedDetails.callFrames =
745
+ await this.#expandCallFramesCallback.call(null, this.#debuggerPausedDetails.callFrames);
746
+ }
747
+ this.dispatchEventToListeners(Events.DebugInfoAttached, script);
748
+ }
749
+
750
+ executionContextDestroyed(executionContext: ExecutionContext): void {
751
+ for (const script of this.#scripts.values()) {
752
+ if (script.executionContextId === executionContext.id) {
753
+ this.#sourceMapManager.detachSourceMap(script);
754
+ }
755
+ }
756
+ }
757
+
758
+ private registerScript(script: Script): void {
759
+ this.#scripts.set(script.scriptId, script);
760
+ if (script.isAnonymousScript()) {
761
+ return;
762
+ }
763
+
764
+ let scripts = this.#scriptsBySourceURL.get(script.sourceURL);
765
+ if (!scripts) {
766
+ scripts = [];
767
+ this.#scriptsBySourceURL.set(script.sourceURL, scripts);
768
+ }
769
+ // Newer scripts with the same URL should be preferred so we put them in
770
+ // the front. Consuming code usually will iterate over the array and pick
771
+ // the first script that works.
772
+ scripts.unshift(script);
773
+ }
774
+
775
+ private unregisterScript(script: Script): void {
776
+ console.assert(script.isAnonymousScript());
777
+ this.#scripts.delete(script.scriptId);
778
+ }
779
+
780
+ private collectDiscardedScripts(): void {
781
+ if (this.#discardableScripts.length < 1000) {
782
+ return;
783
+ }
784
+ const scriptsToDiscard = this.#discardableScripts.splice(0, 100);
785
+ for (const script of scriptsToDiscard) {
786
+ this.unregisterScript(script);
787
+ this.dispatchEventToListeners(Events.DiscardedAnonymousScriptSource, script);
788
+ }
789
+ }
790
+
791
+ createRawLocation(script: Script, lineNumber: number, columnNumber: number, inlineFrameIndex?: number): Location {
792
+ return this.createRawLocationByScriptId(script.scriptId, lineNumber, columnNumber, inlineFrameIndex);
793
+ }
794
+
795
+ createRawLocationByURL(sourceURL: string, lineNumber: number, columnNumber?: number, inlineFrameIndex?: number):
796
+ Location|null {
797
+ for (const script of this.#scriptsBySourceURL.get(sourceURL) || []) {
798
+ if (script.lineOffset > lineNumber ||
799
+ (script.lineOffset === lineNumber && columnNumber !== undefined && script.columnOffset > columnNumber)) {
800
+ continue;
801
+ }
802
+ if (script.endLine < lineNumber ||
803
+ (script.endLine === lineNumber && columnNumber !== undefined && script.endColumn <= columnNumber)) {
804
+ continue;
805
+ }
806
+ return new Location(this, script.scriptId, lineNumber, columnNumber, inlineFrameIndex);
807
+ }
808
+ return null;
809
+ }
810
+
811
+ createRawLocationByScriptId(
812
+ scriptId: Protocol.Runtime.ScriptId, lineNumber: number, columnNumber?: number,
813
+ inlineFrameIndex?: number): Location {
814
+ return new Location(this, scriptId, lineNumber, columnNumber, inlineFrameIndex);
815
+ }
816
+
817
+ createRawLocationsByStackTrace(stackTrace: Protocol.Runtime.StackTrace): Location[] {
818
+ const rawLocations: Location[] = [];
819
+ for (let current: Protocol.Runtime.StackTrace|undefined = stackTrace; current; current = current.parent) {
820
+ for (const {scriptId, lineNumber, columnNumber} of current.callFrames) {
821
+ rawLocations.push(this.createRawLocationByScriptId(scriptId, lineNumber, columnNumber));
822
+ }
823
+ }
824
+ return rawLocations;
825
+ }
826
+
827
+ isPaused(): boolean {
828
+ return Boolean(this.debuggerPausedDetails());
829
+ }
830
+
831
+ isPausing(): boolean {
832
+ return this.#isPausing;
833
+ }
834
+
835
+ setSelectedCallFrame(callFrame: CallFrame|null): void {
836
+ if (this.#selectedCallFrame === callFrame) {
837
+ return;
838
+ }
839
+ this.#selectedCallFrame = callFrame;
840
+ this.dispatchEventToListeners(Events.CallFrameSelected, this);
841
+ }
842
+
843
+ selectedCallFrame(): CallFrame|null {
844
+ return this.#selectedCallFrame;
845
+ }
846
+
847
+ async evaluateOnSelectedCallFrame(options: EvaluationOptions): Promise<EvaluationResult> {
848
+ const callFrame = this.selectedCallFrame();
849
+ if (!callFrame) {
850
+ throw new Error('No call frame selected');
851
+ }
852
+ return await callFrame.evaluate(options);
853
+ }
854
+
855
+ functionDetailsPromise(remoteObject: RemoteObject): Promise<FunctionDetails|null> {
856
+ return remoteObject.getAllProperties(false /* accessorPropertiesOnly */, false /* generatePreview */)
857
+ .then(buildDetails.bind(this));
858
+
859
+ function buildDetails(this: DebuggerModel, response: GetPropertiesResult): FunctionDetails|null {
860
+ if (!response) {
861
+ return null;
862
+ }
863
+ let location: (RemoteObject|null|undefined)|null = null;
864
+ if (response.internalProperties) {
865
+ for (const prop of response.internalProperties) {
866
+ if (prop.name === '[[FunctionLocation]]') {
867
+ location = prop.value;
868
+ }
869
+ }
870
+ }
871
+ let functionName: RemoteObject|null = null;
872
+ if (response.properties) {
873
+ for (const prop of response.properties) {
874
+ if (prop.name === 'name' && prop.value && prop.value.type === 'string') {
875
+ functionName = prop.value;
876
+ }
877
+ }
878
+ }
879
+ let debuggerLocation: Location|null = null;
880
+ if (location) {
881
+ debuggerLocation = this.createRawLocationByScriptId(
882
+ location.value.scriptId, location.value.lineNumber, location.value.columnNumber);
883
+ }
884
+ return {location: debuggerLocation, functionName: functionName ? functionName.value as string : ''};
885
+ }
886
+ }
887
+
888
+ async setVariableValue(
889
+ scopeNumber: number, variableName: string, newValue: Protocol.Runtime.CallArgument,
890
+ callFrameId: Protocol.Debugger.CallFrameId): Promise<string|undefined> {
891
+ const response = await this.agent.invoke_setVariableValue({scopeNumber, variableName, newValue, callFrameId});
892
+ const error = response.getError();
893
+ return error;
894
+ }
895
+
896
+ addBreakpointListener(
897
+ breakpointId: string, listener: (arg0: Common.EventTarget.EventTargetEvent<Location>) => void,
898
+ thisObject?: Object): void {
899
+ this.#breakpointResolvedEventTarget.addEventListener(breakpointId, listener, thisObject);
900
+ }
901
+
902
+ removeBreakpointListener(
903
+ breakpointId: string, listener: (arg0: Common.EventTarget.EventTargetEvent<Location>) => void,
904
+ thisObject?: Object): void {
905
+ this.#breakpointResolvedEventTarget.removeEventListener(breakpointId, listener, thisObject);
906
+ }
907
+
908
+ async setBlackboxPatterns(patterns: string[], skipAnonymous: boolean): Promise<boolean> {
909
+ const response = await this.agent.invoke_setBlackboxPatterns({patterns, skipAnonymous});
910
+ const error = response.getError();
911
+ return !error;
912
+ }
913
+
914
+ async setBlackboxExecutionContexts(uniqueIds: string[]): Promise<boolean> {
915
+ const response = await this.agent.invoke_setBlackboxExecutionContexts({uniqueIds});
916
+ const error = response.getError();
917
+ return !error;
918
+ }
919
+
920
+ override dispose(): void {
921
+ if (this.#debuggerId) {
922
+ debuggerIdToModel.delete(this.#debuggerId);
923
+ }
924
+ Common.Settings.Settings.instance()
925
+ .moduleSetting('pause-on-exception-enabled')
926
+ .removeChangeListener(this.pauseOnExceptionStateChanged, this);
927
+ Common.Settings.Settings.instance()
928
+ .moduleSetting('pause-on-caught-exception')
929
+ .removeChangeListener(this.pauseOnExceptionStateChanged, this);
930
+ Common.Settings.Settings.instance()
931
+ .moduleSetting('disable-async-stack-traces')
932
+ .removeChangeListener(this.asyncStackTracesStateChanged, this);
933
+ }
934
+
935
+ override async suspendModel(): Promise<void> {
936
+ await this.disableDebugger();
937
+ }
938
+
939
+ override async resumeModel(): Promise<void> {
940
+ await this.enableDebugger();
941
+ }
942
+
943
+ private static shouldResyncDebuggerId = false;
944
+
945
+ getEvaluateOnCallFrameCallback():
946
+ ((arg0: CallFrame, arg1: EvaluationOptions) => Promise<EvaluationResult|null>)|null {
947
+ return this.evaluateOnCallFrameCallback;
948
+ }
949
+
950
+ /**
951
+ * Iterates the async stack trace parents.
952
+ *
953
+ * Retrieving cross-target async stack fragments requires CDP interaction, so this is an async generator.
954
+ *
955
+ * Important: This iterator will not yield the "synchronous" part of the stack trace, only the async parent chain.
956
+ */
957
+ async *
958
+ iterateAsyncParents(stackTraceOrPausedDetails: Protocol.Runtime.StackTrace|DebuggerPausedDetails):
959
+ AsyncGenerator<{stackTrace: Protocol.Runtime.StackTrace, target: Target}> {
960
+ // We make `DebuggerPausedDetails` look like a stack trace. We are only interested in `parent` and `parentId` in any case.
961
+ let stackTrace: Protocol.Runtime.StackTrace = stackTraceOrPausedDetails instanceof DebuggerPausedDetails ?
962
+ {
963
+ callFrames: [],
964
+ parent: stackTraceOrPausedDetails.asyncStackTrace,
965
+ parentId: stackTraceOrPausedDetails.asyncStackTraceId
966
+ } :
967
+ stackTraceOrPausedDetails;
968
+ let target = this.target();
969
+
970
+ while (true) {
971
+ if (stackTrace.parent) {
972
+ stackTrace = stackTrace.parent;
973
+ } else if (stackTrace.parentId) {
974
+ const model: DebuggerModel|null = stackTrace.parentId.debuggerId ?
975
+ await DebuggerModel.modelForDebuggerId(stackTrace.parentId.debuggerId) :
976
+ this;
977
+ if (!model) {
978
+ return;
979
+ }
980
+ const maybeStackTrace = await model.fetchAsyncStackTrace(stackTrace.parentId);
981
+ if (!maybeStackTrace) {
982
+ return;
983
+ }
984
+ stackTrace = maybeStackTrace;
985
+ target = model.target();
986
+ } else {
987
+ return;
988
+ }
989
+
990
+ yield {stackTrace, target};
991
+ }
992
+ }
993
+ }
994
+
995
+ const debuggerIdToModel = new Map<string, DebuggerModel>();
996
+
997
+ /**
998
+ * Keep these in sync with WebCore::V8Debugger
999
+ */
1000
+ export enum PauseOnExceptionsState {
1001
+ /* eslint-disable @typescript-eslint/naming-convention -- Used by web_tests. */
1002
+ DontPauseOnExceptions = 'none',
1003
+ PauseOnAllExceptions = 'all',
1004
+ PauseOnCaughtExceptions = 'caught',
1005
+ PauseOnUncaughtExceptions = 'uncaught',
1006
+ /* eslint-enable @typescript-eslint/naming-convention */
1007
+ }
1008
+
1009
+ export enum Events {
1010
+ /* eslint-disable @typescript-eslint/naming-convention -- Used by web_tests. */
1011
+ DebuggerWasEnabled = 'DebuggerWasEnabled',
1012
+ DebuggerWasDisabled = 'DebuggerWasDisabled',
1013
+ DebuggerPaused = 'DebuggerPaused',
1014
+ DebuggerResumed = 'DebuggerResumed',
1015
+ DebugInfoAttached = 'DebugInfoAttached',
1016
+ ParsedScriptSource = 'ParsedScriptSource',
1017
+ DiscardedAnonymousScriptSource = 'DiscardedAnonymousScriptSource',
1018
+ GlobalObjectCleared = 'GlobalObjectCleared',
1019
+ CallFrameSelected = 'CallFrameSelected',
1020
+ DebuggerIsReadyToPause = 'DebuggerIsReadyToPause',
1021
+ ScriptSourceWasEdited = 'ScriptSourceWasEdited',
1022
+ /* eslint-enable @typescript-eslint/naming-convention */
1023
+ }
1024
+
1025
+ export interface EventTypes {
1026
+ [Events.DebuggerWasEnabled]: DebuggerModel;
1027
+ [Events.DebuggerWasDisabled]: DebuggerModel;
1028
+ [Events.DebuggerPaused]: DebuggerModel;
1029
+ [Events.DebuggerResumed]: DebuggerModel;
1030
+ [Events.ParsedScriptSource]: Script;
1031
+ [Events.DiscardedAnonymousScriptSource]: Script;
1032
+ [Events.GlobalObjectCleared]: DebuggerModel;
1033
+ [Events.CallFrameSelected]: DebuggerModel;
1034
+ [Events.DebuggerIsReadyToPause]: DebuggerModel;
1035
+ [Events.DebugInfoAttached]: Script;
1036
+ [Events.ScriptSourceWasEdited]: {
1037
+ script: Script,
1038
+ status: Protocol.Debugger.SetScriptSourceResponseStatus,
1039
+ };
1040
+ }
1041
+
1042
+ class DebuggerDispatcher implements ProtocolProxyApi.DebuggerDispatcher {
1043
+ #debuggerModel: DebuggerModel;
1044
+
1045
+ constructor(debuggerModel: DebuggerModel) {
1046
+ this.#debuggerModel = debuggerModel;
1047
+ }
1048
+
1049
+ paused({callFrames, reason, data, hitBreakpoints, asyncStackTrace, asyncStackTraceId}: Protocol.Debugger.PausedEvent):
1050
+ void {
1051
+ if (!this.#debuggerModel.debuggerEnabled()) {
1052
+ return;
1053
+ }
1054
+ void this.#debuggerModel.pausedScript(
1055
+ callFrames, reason, data, hitBreakpoints || [], asyncStackTrace, asyncStackTraceId);
1056
+ }
1057
+
1058
+ resumed(): void {
1059
+ if (!this.#debuggerModel.debuggerEnabled()) {
1060
+ return;
1061
+ }
1062
+ this.#debuggerModel.resumedScript();
1063
+ }
1064
+
1065
+ scriptParsed({
1066
+ scriptId,
1067
+ url,
1068
+ startLine,
1069
+ startColumn,
1070
+ endLine,
1071
+ endColumn,
1072
+ executionContextId,
1073
+ hash,
1074
+ executionContextAuxData,
1075
+ isLiveEdit,
1076
+ sourceMapURL,
1077
+ hasSourceURL,
1078
+ length,
1079
+ isModule,
1080
+ stackTrace,
1081
+ codeOffset,
1082
+ scriptLanguage,
1083
+ debugSymbols,
1084
+ embedderName,
1085
+ buildId,
1086
+ }: Protocol.Debugger.ScriptParsedEvent): void {
1087
+ if (!this.#debuggerModel.debuggerEnabled()) {
1088
+ return;
1089
+ }
1090
+ this.#debuggerModel.parsedScriptSource(
1091
+ scriptId, url as Platform.DevToolsPath.UrlString, startLine, startColumn, endLine, endColumn,
1092
+ executionContextId, hash, executionContextAuxData, Boolean(isLiveEdit), sourceMapURL, Boolean(hasSourceURL),
1093
+ false, length || 0, isModule || null, stackTrace || null, codeOffset || null, scriptLanguage || null,
1094
+ debugSymbols || null, embedderName as Platform.DevToolsPath.UrlString || null, buildId || null);
1095
+ }
1096
+
1097
+ scriptFailedToParse({
1098
+ scriptId,
1099
+ url,
1100
+ startLine,
1101
+ startColumn,
1102
+ endLine,
1103
+ endColumn,
1104
+ executionContextId,
1105
+ hash,
1106
+ executionContextAuxData,
1107
+ sourceMapURL,
1108
+ hasSourceURL,
1109
+ length,
1110
+ isModule,
1111
+ stackTrace,
1112
+ codeOffset,
1113
+ scriptLanguage,
1114
+ embedderName,
1115
+ buildId,
1116
+ }: Protocol.Debugger.ScriptFailedToParseEvent): void {
1117
+ if (!this.#debuggerModel.debuggerEnabled()) {
1118
+ return;
1119
+ }
1120
+ this.#debuggerModel.parsedScriptSource(
1121
+ scriptId, url as Platform.DevToolsPath.UrlString, startLine, startColumn, endLine, endColumn,
1122
+ executionContextId, hash, executionContextAuxData, false, sourceMapURL, Boolean(hasSourceURL), true,
1123
+ length || 0, isModule || null, stackTrace || null, codeOffset || null, scriptLanguage || null, null,
1124
+ embedderName as Platform.DevToolsPath.UrlString || null, buildId || null);
1125
+ }
1126
+
1127
+ breakpointResolved({breakpointId, location}: Protocol.Debugger.BreakpointResolvedEvent): void {
1128
+ if (!this.#debuggerModel.debuggerEnabled()) {
1129
+ return;
1130
+ }
1131
+ this.#debuggerModel.breakpointResolved(breakpointId, location);
1132
+ }
1133
+ }
1134
+
1135
+ export class Location {
1136
+ debuggerModel: DebuggerModel;
1137
+ scriptId: Protocol.Runtime.ScriptId;
1138
+ lineNumber: number;
1139
+ columnNumber: number;
1140
+ inlineFrameIndex: number;
1141
+
1142
+ constructor(
1143
+ debuggerModel: DebuggerModel, scriptId: Protocol.Runtime.ScriptId, lineNumber: number, columnNumber?: number,
1144
+ inlineFrameIndex?: number) {
1145
+ this.debuggerModel = debuggerModel;
1146
+ this.scriptId = scriptId;
1147
+ this.lineNumber = lineNumber;
1148
+ this.columnNumber = columnNumber || 0;
1149
+ this.inlineFrameIndex = inlineFrameIndex || 0;
1150
+ }
1151
+
1152
+ static fromPayload(debuggerModel: DebuggerModel, payload: Protocol.Debugger.Location, inlineFrameIndex?: number):
1153
+ Location {
1154
+ return new Location(debuggerModel, payload.scriptId, payload.lineNumber, payload.columnNumber, inlineFrameIndex);
1155
+ }
1156
+
1157
+ payload(): Protocol.Debugger.Location {
1158
+ return {scriptId: this.scriptId, lineNumber: this.lineNumber, columnNumber: this.columnNumber};
1159
+ }
1160
+
1161
+ script(): Script|null {
1162
+ return this.debuggerModel.scriptForId(this.scriptId);
1163
+ }
1164
+
1165
+ continueToLocation(pausedCallback?: (() => void)): void {
1166
+ if (pausedCallback) {
1167
+ this.debuggerModel.continueToLocationCallback = this.paused.bind(this, pausedCallback);
1168
+ }
1169
+ void this.debuggerModel.agent.invoke_continueToLocation({
1170
+ location: this.payload(),
1171
+ targetCallFrames: Protocol.Debugger.ContinueToLocationRequestTargetCallFrames.Current,
1172
+ });
1173
+ }
1174
+
1175
+ private paused(pausedCallback: () => void|undefined, debuggerPausedDetails: DebuggerPausedDetails): boolean {
1176
+ const location = debuggerPausedDetails.callFrames[0].location();
1177
+ if (location.scriptId === this.scriptId && location.lineNumber === this.lineNumber &&
1178
+ location.columnNumber === this.columnNumber) {
1179
+ pausedCallback();
1180
+ return true;
1181
+ }
1182
+ return false;
1183
+ }
1184
+
1185
+ id(): string {
1186
+ return this.debuggerModel.target().id() + ':' + this.scriptId + ':' + this.lineNumber + ':' + this.columnNumber;
1187
+ }
1188
+ }
1189
+
1190
+ export interface LocationRange {
1191
+ start: Location;
1192
+ end: Location;
1193
+ }
1194
+
1195
+ export class BreakLocation extends Location {
1196
+ type: Protocol.Debugger.BreakLocationType|undefined;
1197
+ constructor(
1198
+ debuggerModel: DebuggerModel, scriptId: Protocol.Runtime.ScriptId, lineNumber: number, columnNumber?: number,
1199
+ type?: Protocol.Debugger.BreakLocationType) {
1200
+ super(debuggerModel, scriptId, lineNumber, columnNumber);
1201
+ if (type) {
1202
+ this.type = type;
1203
+ }
1204
+ }
1205
+
1206
+ static override fromPayload(debuggerModel: DebuggerModel, payload: Protocol.Debugger.BreakLocation): BreakLocation {
1207
+ return new BreakLocation(debuggerModel, payload.scriptId, payload.lineNumber, payload.columnNumber, payload.type);
1208
+ }
1209
+ }
1210
+
1211
+ export interface MissingDebugFiles {
1212
+ resourceUrl: Platform.DevToolsPath.UrlString;
1213
+ initiator: PageResourceLoadInitiator;
1214
+ }
1215
+
1216
+ export interface MissingDebugInfoDetails {
1217
+ details: string;
1218
+ resources: MissingDebugFiles[];
1219
+ }
1220
+
1221
+ export class CallFrame {
1222
+ debuggerModel: DebuggerModel;
1223
+ readonly script: Script;
1224
+ payload: Protocol.Debugger.CallFrame;
1225
+ readonly #location: Location;
1226
+ readonly #scopeChain: Scope[];
1227
+ readonly #localScope: Scope|null;
1228
+ readonly inlineFrameIndex: number;
1229
+ readonly functionName: string;
1230
+ readonly #functionLocation: Location|undefined;
1231
+ #returnValue: RemoteObject|null;
1232
+ missingDebugInfoDetails: MissingDebugInfoDetails|null;
1233
+ readonly exception: RemoteObject|null;
1234
+
1235
+ readonly canBeRestarted: boolean;
1236
+
1237
+ constructor(
1238
+ debuggerModel: DebuggerModel, script: Script, payload: Protocol.Debugger.CallFrame, inlineFrameIndex?: number,
1239
+ functionName?: string, exception: RemoteObject|null = null) {
1240
+ this.debuggerModel = debuggerModel;
1241
+ this.script = script;
1242
+ this.payload = payload;
1243
+ this.#location = Location.fromPayload(debuggerModel, payload.location, inlineFrameIndex);
1244
+ this.#scopeChain = [];
1245
+ this.#localScope = null;
1246
+ this.inlineFrameIndex = inlineFrameIndex || 0;
1247
+ this.functionName = functionName ?? payload.functionName;
1248
+ this.missingDebugInfoDetails = null;
1249
+ this.canBeRestarted = Boolean(payload.canBeRestarted);
1250
+ this.exception = exception;
1251
+ for (let i = 0; i < payload.scopeChain.length; ++i) {
1252
+ const scope = new Scope(this, i);
1253
+ this.#scopeChain.push(scope);
1254
+ if (scope.type() === Protocol.Debugger.ScopeType.Local) {
1255
+ this.#localScope = scope;
1256
+ }
1257
+ }
1258
+ if (payload.functionLocation) {
1259
+ this.#functionLocation = Location.fromPayload(debuggerModel, payload.functionLocation);
1260
+ }
1261
+ this.#returnValue =
1262
+ payload.returnValue ? this.debuggerModel.runtimeModel().createRemoteObject(payload.returnValue) : null;
1263
+ }
1264
+
1265
+ static fromPayloadArray(
1266
+ debuggerModel: DebuggerModel, callFrames: Protocol.Debugger.CallFrame[],
1267
+ exception: RemoteObject|null): CallFrame[] {
1268
+ const result = [];
1269
+ for (let i = 0; i < callFrames.length; ++i) {
1270
+ const callFrame = callFrames[i];
1271
+ const script = debuggerModel.scriptForId(callFrame.location.scriptId);
1272
+ if (script) {
1273
+ const ex = i === 0 ? exception : null;
1274
+ result.push(new CallFrame(debuggerModel, script, callFrame, undefined, undefined, ex));
1275
+ }
1276
+ }
1277
+ return result;
1278
+ }
1279
+
1280
+ createVirtualCallFrame(inlineFrameIndex: number, name: string): CallFrame {
1281
+ return new CallFrame(this.debuggerModel, this.script, this.payload, inlineFrameIndex, name, this.exception);
1282
+ }
1283
+
1284
+ get id(): Protocol.Debugger.CallFrameId {
1285
+ return this.payload.callFrameId;
1286
+ }
1287
+
1288
+ scopeChain(): Scope[] {
1289
+ return this.#scopeChain;
1290
+ }
1291
+
1292
+ localScope(): Scope|null {
1293
+ return this.#localScope;
1294
+ }
1295
+
1296
+ thisObject(): RemoteObject|null {
1297
+ return this.payload.this ? this.debuggerModel.runtimeModel().createRemoteObject(this.payload.this) : null;
1298
+ }
1299
+
1300
+ returnValue(): RemoteObject|null {
1301
+ return this.#returnValue;
1302
+ }
1303
+
1304
+ async setReturnValue(expression: string): Promise<RemoteObject|null> {
1305
+ if (!this.#returnValue) {
1306
+ return null;
1307
+ }
1308
+
1309
+ const evaluateResponse = await this.debuggerModel.agent.invoke_evaluateOnCallFrame(
1310
+ {callFrameId: this.id, expression, silent: true, objectGroup: 'backtrace'});
1311
+ if (evaluateResponse.getError() || evaluateResponse.exceptionDetails) {
1312
+ return null;
1313
+ }
1314
+ const response = await this.debuggerModel.agent.invoke_setReturnValue({newValue: evaluateResponse.result});
1315
+ if (response.getError()) {
1316
+ return null;
1317
+ }
1318
+ this.#returnValue = this.debuggerModel.runtimeModel().createRemoteObject(evaluateResponse.result);
1319
+ return this.#returnValue;
1320
+ }
1321
+
1322
+ location(): Location {
1323
+ return this.#location;
1324
+ }
1325
+
1326
+ functionLocation(): Location|null {
1327
+ return this.#functionLocation || null;
1328
+ }
1329
+
1330
+ async evaluate(options: EvaluationOptions): Promise<EvaluationResult> {
1331
+ const debuggerModel = this.debuggerModel;
1332
+ const runtimeModel = debuggerModel.runtimeModel();
1333
+
1334
+ const evaluateOnCallFrameCallback = debuggerModel.getEvaluateOnCallFrameCallback();
1335
+ if (evaluateOnCallFrameCallback) {
1336
+ const result = await evaluateOnCallFrameCallback(this, options);
1337
+ if (result) {
1338
+ return result;
1339
+ }
1340
+ }
1341
+
1342
+ const response = await this.debuggerModel.agent.invoke_evaluateOnCallFrame({
1343
+ callFrameId: this.id,
1344
+ expression: options.expression,
1345
+ objectGroup: options.objectGroup,
1346
+ includeCommandLineAPI: options.includeCommandLineAPI,
1347
+ silent: options.silent,
1348
+ returnByValue: options.returnByValue,
1349
+ generatePreview: options.generatePreview,
1350
+ throwOnSideEffect: options.throwOnSideEffect,
1351
+ timeout: options.timeout,
1352
+ });
1353
+ const error = response.getError();
1354
+ if (error) {
1355
+ return {error};
1356
+ }
1357
+ return {object: runtimeModel.createRemoteObject(response.result), exceptionDetails: response.exceptionDetails};
1358
+ }
1359
+
1360
+ async restart(): Promise<void> {
1361
+ console.assert(this.canBeRestarted, 'This frame can not be restarted.');
1362
+ // Note that even if `canBeRestarted` is true, the restart frame call can still fail.
1363
+ // The user can evaluate arbitrary code between pausing and restarting the frame that
1364
+ // could mess with the call stack.
1365
+ await this.debuggerModel.agent.invoke_restartFrame(
1366
+ {callFrameId: this.id, mode: Protocol.Debugger.RestartFrameRequestMode.StepInto});
1367
+ }
1368
+
1369
+ getPayload(): Protocol.Debugger.CallFrame {
1370
+ return this.payload;
1371
+ }
1372
+ }
1373
+
1374
+ export interface ScopeChainEntry {
1375
+ callFrame(): CallFrame;
1376
+
1377
+ type(): string;
1378
+
1379
+ typeName(): string;
1380
+
1381
+ name(): string|undefined;
1382
+
1383
+ range(): LocationRange|null;
1384
+
1385
+ object(): RemoteObject;
1386
+
1387
+ description(): string;
1388
+
1389
+ icon(): string|undefined;
1390
+
1391
+ /**
1392
+ * Extra and/or synthetic properties that should be added to the `RemoteObject`
1393
+ * returned by {@link ScopeChainEntry.object}.
1394
+ */
1395
+ extraProperties(): RemoteObjectProperty[];
1396
+ }
1397
+
1398
+ export class Scope implements ScopeChainEntry {
1399
+ #callFrame: CallFrame;
1400
+ #payload: Protocol.Debugger.Scope;
1401
+ readonly #type: Protocol.Debugger.ScopeType;
1402
+ readonly #name: string|undefined;
1403
+ #ordinal: number;
1404
+ readonly #locationRange: LocationRange|null;
1405
+ #object: RemoteObject|null;
1406
+ constructor(callFrame: CallFrame, ordinal: number) {
1407
+ this.#callFrame = callFrame;
1408
+ this.#payload = callFrame.getPayload().scopeChain[ordinal];
1409
+ this.#type = this.#payload.type;
1410
+ this.#name = this.#payload.name;
1411
+ this.#ordinal = ordinal;
1412
+ this.#object = null;
1413
+
1414
+ const start =
1415
+ this.#payload.startLocation ? Location.fromPayload(callFrame.debuggerModel, this.#payload.startLocation) : null;
1416
+ const end =
1417
+ this.#payload.endLocation ? Location.fromPayload(callFrame.debuggerModel, this.#payload.endLocation) : null;
1418
+ if (start && end && start.scriptId === end.scriptId) {
1419
+ this.#locationRange = {start, end};
1420
+ } else {
1421
+ this.#locationRange = null;
1422
+ }
1423
+ }
1424
+
1425
+ callFrame(): CallFrame {
1426
+ return this.#callFrame;
1427
+ }
1428
+
1429
+ type(): string {
1430
+ return this.#type;
1431
+ }
1432
+
1433
+ typeName(): string {
1434
+ switch (this.#type) {
1435
+ case Protocol.Debugger.ScopeType.Local:
1436
+ return i18nString(UIStrings.local);
1437
+ case Protocol.Debugger.ScopeType.Closure:
1438
+ return i18nString(UIStrings.closure);
1439
+ case Protocol.Debugger.ScopeType.Catch:
1440
+ return i18nString(UIStrings.catchBlock);
1441
+ case Protocol.Debugger.ScopeType.Eval:
1442
+ return i18n.i18n.lockedString('Eval');
1443
+ case Protocol.Debugger.ScopeType.Block:
1444
+ return i18nString(UIStrings.block);
1445
+ case Protocol.Debugger.ScopeType.Script:
1446
+ return i18nString(UIStrings.script);
1447
+ case Protocol.Debugger.ScopeType.With:
1448
+ return i18nString(UIStrings.withBlock);
1449
+ case Protocol.Debugger.ScopeType.Global:
1450
+ return i18nString(UIStrings.global);
1451
+ case Protocol.Debugger.ScopeType.Module:
1452
+ return i18nString(UIStrings.module);
1453
+ case Protocol.Debugger.ScopeType.WasmExpressionStack:
1454
+ return i18nString(UIStrings.expression);
1455
+ }
1456
+ return '';
1457
+ }
1458
+
1459
+ name(): string|undefined {
1460
+ return this.#name;
1461
+ }
1462
+
1463
+ range(): LocationRange|null {
1464
+ return this.#locationRange;
1465
+ }
1466
+
1467
+ object(): RemoteObject {
1468
+ if (this.#object) {
1469
+ return this.#object;
1470
+ }
1471
+ const runtimeModel = this.#callFrame.debuggerModel.runtimeModel();
1472
+
1473
+ const declarativeScope =
1474
+ this.#type !== Protocol.Debugger.ScopeType.With && this.#type !== Protocol.Debugger.ScopeType.Global;
1475
+ if (declarativeScope) {
1476
+ this.#object =
1477
+ runtimeModel.createScopeRemoteObject(this.#payload.object, new ScopeRef(this.#ordinal, this.#callFrame.id));
1478
+ } else {
1479
+ this.#object = runtimeModel.createRemoteObject(this.#payload.object);
1480
+ }
1481
+
1482
+ return this.#object;
1483
+ }
1484
+
1485
+ description(): string {
1486
+ const declarativeScope =
1487
+ this.#type !== Protocol.Debugger.ScopeType.With && this.#type !== Protocol.Debugger.ScopeType.Global;
1488
+ return declarativeScope ? '' : (this.#payload.object.description || '');
1489
+ }
1490
+
1491
+ icon(): undefined {
1492
+ return undefined;
1493
+ }
1494
+
1495
+ extraProperties(): RemoteObjectProperty[] {
1496
+ if (this.#ordinal !== 0 || this.#type !== Protocol.Debugger.ScopeType.Local || this.#callFrame.script.isWasm()) {
1497
+ return [];
1498
+ }
1499
+
1500
+ const extraProperties = [];
1501
+ const exception = this.#callFrame.exception;
1502
+ if (exception) {
1503
+ extraProperties.push(new RemoteObjectProperty(
1504
+ i18nString(UIStrings.exception), exception, undefined, undefined, undefined, undefined, undefined,
1505
+ /* synthetic */ true));
1506
+ }
1507
+ const returnValue = this.#callFrame.returnValue();
1508
+ if (returnValue) {
1509
+ extraProperties.push(new RemoteObjectProperty(
1510
+ i18nString(UIStrings.returnValue), returnValue, undefined, undefined, undefined, undefined, undefined,
1511
+ /* synthetic */ true, this.#callFrame.setReturnValue.bind(this.#callFrame)));
1512
+ }
1513
+ return extraProperties;
1514
+ }
1515
+ }
1516
+
1517
+ export class DebuggerPausedDetails {
1518
+ debuggerModel: DebuggerModel;
1519
+ callFrames: CallFrame[];
1520
+ reason: Protocol.Debugger.PausedEventReason;
1521
+ // eslint-disable-next-line @typescript-eslint/no-explicit-any
1522
+ auxData: Record<string, any>|undefined;
1523
+ breakpointIds: string[];
1524
+ asyncStackTrace: Protocol.Runtime.StackTrace|undefined;
1525
+ asyncStackTraceId: Protocol.Runtime.StackTraceId|undefined;
1526
+ constructor(
1527
+ debuggerModel: DebuggerModel,
1528
+ callFrames: Protocol.Debugger.CallFrame[],
1529
+ reason: Protocol.Debugger.PausedEventReason,
1530
+ // eslint-disable-next-line @typescript-eslint/no-explicit-any
1531
+ auxData: Record<string, any>|undefined,
1532
+ breakpointIds: string[],
1533
+ asyncStackTrace?: Protocol.Runtime.StackTrace,
1534
+ asyncStackTraceId?: Protocol.Runtime.StackTraceId,
1535
+ ) {
1536
+ this.debuggerModel = debuggerModel;
1537
+ this.reason = reason;
1538
+ this.auxData = auxData;
1539
+ this.breakpointIds = breakpointIds;
1540
+ if (asyncStackTrace) {
1541
+ this.asyncStackTrace = this.cleanRedundantFrames(asyncStackTrace);
1542
+ }
1543
+ this.asyncStackTraceId = asyncStackTraceId;
1544
+ this.callFrames = CallFrame.fromPayloadArray(debuggerModel, callFrames, this.exception());
1545
+ }
1546
+
1547
+ private exception(): RemoteObject|null {
1548
+ if (this.reason !== Protocol.Debugger.PausedEventReason.Exception &&
1549
+ this.reason !== Protocol.Debugger.PausedEventReason.PromiseRejection) {
1550
+ return null;
1551
+ }
1552
+ return this.debuggerModel.runtimeModel().createRemoteObject((this.auxData as Protocol.Runtime.RemoteObject));
1553
+ }
1554
+
1555
+ private cleanRedundantFrames(asyncStackTrace: Protocol.Runtime.StackTrace): Protocol.Runtime.StackTrace {
1556
+ let stack: (Protocol.Runtime.StackTrace|undefined)|Protocol.Runtime.StackTrace = asyncStackTrace;
1557
+ let previous: Protocol.Runtime.StackTrace|null = null;
1558
+ while (stack) {
1559
+ if (previous && !stack.callFrames.length) {
1560
+ previous.parent = stack.parent;
1561
+ } else {
1562
+ previous = stack;
1563
+ }
1564
+ stack = stack.parent;
1565
+ }
1566
+ return asyncStackTrace;
1567
+ }
1568
+ }
1569
+
1570
+ SDKModel.register(DebuggerModel, {capabilities: Capability.JS, autostart: true});
1571
+
1572
+ export interface FunctionDetails {
1573
+ location: Location|null;
1574
+ functionName: string;
1575
+ }
1576
+ export interface SetBreakpointResult {
1577
+ breakpointId: Protocol.Debugger.BreakpointId|null;
1578
+ locations: Location[];
1579
+ }
1580
+
1581
+ interface PausedOnInstrumentationData {
1582
+ scriptId: Protocol.Runtime.ScriptId;
1583
+ }
1584
+
1585
+ export interface EventListenerPausedDetailsAuxData {
1586
+ eventName: string;
1587
+ targetName?: string;
1588
+ webglErrorName?: string;
1589
+ directiveText?: string;
1590
+ }
1591
+
1592
+ export const enum BreakpointType {
1593
+ LOGPOINT = 'LOGPOINT',
1594
+ CONDITIONAL_BREAKPOINT = 'CONDITIONAL_BREAKPOINT',
1595
+ REGULAR_BREAKPOINT = 'REGULAR_BREAKPOINT',
1596
+ }
1597
+
1598
+ /**
1599
+ * A breakpoint condition as sent to V8. This helps distinguish
1600
+ * the breakpoint condition as it is entered by the user.
1601
+ */
1602
+ export type BackendCondition = Platform.Brand.Brand<string, 'BackendCondition'>;
1603
+
1604
+ export const LOGPOINT_SOURCE_URL = 'debugger://logpoint';
1605
+ export const COND_BREAKPOINT_SOURCE_URL = 'debugger://breakpoint';