You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If the code is minified and not already from a source map, make it
pretty with the formatter.
Bug: 462135240
Change-Id: I8fef927929b106e71033407b205741e766e28e39
Reviewed-on: https://chromium-review.googlesource.com/c/devtools/devtools-frontend/+/7205506
Reviewed-by: Paul Irish <paulirish@chromium.org>
Commit-Queue: Connor Clark <cjamcl@chromium.org>
Auto-Submit: Connor Clark <cjamcl@chromium.org>
/** The scope/function text, plus some additional context before and after. The actual function scope is wrapped in <FUNCTION_START>...<FUNCTION_END> */
21
+
/** The function text, plus some additional context before and after. The actual function is wrapped in <FUNCTION_START>...<FUNCTION_END> */
21
22
codeWithContext: string;
22
23
/** The range of `codeWithContext` within `text`. */
23
24
rangeWithContext: TextUtils.TextRange.TextRange;
24
25
}
25
26
26
27
exportinterfaceCreateFunctionCodeOptions{
27
-
/** Number of characters to include before and after the function scope. Stacks with `contextLineLength`. */
28
+
/** Number of characters to include before and after the function. Stacks with `contextLineLength`. */
28
29
contextLength?: number;
29
-
/** Number of lines to include before and after the function scope. Stacks with `contextLength`. */
30
+
/** Number of lines to include before and after the function. Stacks with `contextLength`. */
0 commit comments