This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff --git a/src/devtools/client/webconsole/components/Output/Message.js b/src/devtools/client/webconsole/components/Output/Message.js | |
| index d7b51742..66199aa7 100644 | |
| --- a/src/devtools/client/webconsole/components/Output/Message.js | |
| +++ b/src/devtools/client/webconsole/components/Output/Message.js | |
| @@ -11,7 +11,6 @@ const { actions } = require("ui/actions/index"); | |
| const { MESSAGE_TYPE } = require("devtools/client/webconsole/constants"); | |
| const { MessageIndent } = require("devtools/client/webconsole/components/Output/MessageIndent"); | |
| const MessageIcon = require("devtools/client/webconsole/components/Output/MessageIcon"); | |
| -const { CloseButton } = require("devtools/client/debugger/src/components/shared/Button"); | |
| const FrameView = createFactory(require("devtools/client/shared/components/Frame")); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff --git a/src/protocol/socket.ts b/src/protocol/socket.ts | |
| index ae5d602c..044b3f10 100644 | |
| --- a/src/protocol/socket.ts | |
| +++ b/src/protocol/socket.ts | |
| @@ -1,5 +1,6 @@ | |
| import { defer, makeInfallible } from "./utils"; | |
| import { ProtocolClient } from "@recordreplay/protocol"; | |
| +import { setExpectedError } from "ui/actions/session"; | |
| interface Message { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff --git a/src/devtools/client/inspector/actions/index.ts b/src/devtools/client/inspector/actions/index.ts | |
| index 679c55eb..a9737804 100644 | |
| --- a/src/devtools/client/inspector/actions/index.ts | |
| +++ b/src/devtools/client/inspector/actions/index.ts | |
| @@ -1,4 +1,10 @@ | |
| import { Action } from "redux"; | |
| +import { selectors } from "ui/reducers"; | |
| + | |
| +function setupInspector(store) { | |
| + ThreadFront.on("paused", () => store.dispatch(onPaused())); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 0 info it worked if it ends with ok | |
| 1 verbose cli [ '/usr/local/bin/node', '/usr/local/bin/npm', 'publish' ] | |
| 2 info using npm@6.14.9 | |
| 3 info using node@v14.15.3 | |
| 4 verbose npm-session 6d553cd57cd48967 | |
| 5 verbose publish [ '.' ] | |
| 6 info lifecycle @recordreplay/protocol@0.2.1~prepublish: @recordreplay/protocol@0.2.1 | |
| 7 info lifecycle @recordreplay/protocol@0.2.1~prepare: @recordreplay/protocol@0.2.1 | |
| 8 verbose lifecycle @recordreplay/protocol@0.2.1~prepare: unsafe-perm in lifecycle true | |
| 9 verbose lifecycle @recordreplay/protocol@0.2.1~prepare: PATH: /usr/local/lib/node_modules/npm/node_modules/npm-lifecycle/node-gyp-bin:/Users/jasonlaster/src/replay/protocol/node_modules/.bin:/usr/local/bin:/Users/jasonlaster/.cargo/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/Library/Apple/usr/bin:/Users/jasonlaster/src/dotfiles/bin:./node_modules/.bin:/Users/jasonlaster/.yarn/bin |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff --git a/src/devtools/client/debugger/src/actions/breakpoints/index.js b/src/devtools/client/debugger/src/actions/breakpoints/index.js | |
| index 9930d484..7eec265a 100644 | |
| --- a/src/devtools/client/debugger/src/actions/breakpoints/index.js | |
| +++ b/src/devtools/client/debugger/src/actions/breakpoints/index.js | |
| @@ -184,13 +184,18 @@ export function addBreakpointAtLine(cx, line, shouldLog = false, disabled = fals | |
| }; | |
| const options = {}; | |
| - const file = source.url.split("/").pop(); | |
| - options.logValue = `"${file}:${line}"`; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff --git a/src/devtools/client/webconsole/panel.js b/src/devtools/client/webconsole/panel.js | |
| index 90b4b753..a7c27d01 100644 | |
| --- a/src/devtools/client/webconsole/panel.js | |
| +++ b/src/devtools/client/webconsole/panel.js | |
| @@ -6,21 +6,4 @@ | |
| import EventEmitter from "devtools/shared/event-emitter"; | |
| import { initOutputSyntaxHighlighting } from "devtools/client/webconsole/utils/syntax-highlighted"; | |
| - | |
| -export class WebConsolePanel { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff --git a/.gitignore b/.gitignore | |
| index 39213d1..75ec0f0 100644 | |
| --- a/.gitignore | |
| +++ b/.gitignore | |
| @@ -1,7 +1,3 @@ | |
| node_modules | |
| js | |
| -ts/protocol | |
| -ts/client/client.ts | |
| -ts/client/generic.ts |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff --git a/src/devtools/client/inspector/computed/components/ComputedApp.tsx b/src/devtools/client/inspector/computed/components/ComputedApp.tsx | |
| index a5675fc0..f445dfe4 100644 | |
| --- a/src/devtools/client/inspector/computed/components/ComputedApp.tsx | |
| +++ b/src/devtools/client/inspector/computed/components/ComputedApp.tsx | |
| @@ -27,17 +27,7 @@ function isHidden(property: ComputedPropertyState, search: string, showBrowserSt | |
| return false; | |
| } | |
| -function ComputedApp(props: PropsFromRedux) { | |
| - const { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff --git a/src/devtools/client/debugger/src/components/Editor/LineNumberPortal.js b/src/devtools/client/debugger/src/components/Editor/LineNumberPortal.js | |
| index 7bd8265a..7b9b583a 100644 | |
| --- a/src/devtools/client/debugger/src/components/Editor/LineNumberPortal.js | |
| +++ b/src/devtools/client/debugger/src/components/Editor/LineNumberPortal.js | |
| @@ -1,48 +1,40 @@ | |
| -import React, { useRef, useState, useEffect } from "react"; | |
| +import React, { useState } from "react"; | |
| import { connect } from "../../utils/connect"; | |
| import ReactDOM from "react-dom"; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff --git a/src/test/harness.js b/src/test/harness.js | |
| index ce737046..16fff204 100644 | |
| --- a/src/test/harness.js | |
| +++ b/src/test/harness.js | |
| @@ -32,6 +32,10 @@ async function waitUntil(fn) { | |
| throw new Error("waitUntil() timed out"); | |
| } | |
| +function start() { | |
| + app.actions.setViewMode("non-dev"); |