Skip to content
This repository was archived by the owner on Jan 11, 2023. It is now read-only.

Commit 25dc706

Browse files
authored
Remove unused expressions field (#2275)
1 parent aaab4c4 commit 25dc706

File tree

1 file changed

+3
-6
lines changed

1 file changed

+3
-6
lines changed

src/reducers/pause.js

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,7 @@ const makeRecord = require("../utils/makeRecord");
99
const { prefs } = require("../utils/prefs");
1010
const I = require("immutable");
1111

12-
import type { Frame, Pause,
13-
Expression } from "../types";
12+
import type { Frame, Pause } from "../types";
1413
import type { Action } from "../actions/types";
1514
import type { Record } from "../utils/makeRecord";
1615

@@ -21,8 +20,7 @@ type PauseState = {
2120
selectedFrameId: ?string,
2221
loadedObjects: Object,
2322
shouldPauseOnExceptions: boolean,
24-
shouldIgnoreCaughtExceptions: boolean,
25-
expressions: I.List<Expression>
23+
shouldIgnoreCaughtExceptions: boolean
2624
}
2725

2826
const State = makeRecord(({
@@ -32,8 +30,7 @@ const State = makeRecord(({
3230
selectedFrameId: undefined,
3331
loadedObjects: I.Map(),
3432
shouldPauseOnExceptions: prefs.pauseOnExceptions,
35-
shouldIgnoreCaughtExceptions: prefs.ignoreCaughtExceptions,
36-
expressions: I.List()
33+
shouldIgnoreCaughtExceptions: prefs.ignoreCaughtExceptions
3734
} : PauseState));
3835

3936
function update(state = State(), action: Action): Record<PauseState> {

0 commit comments

Comments
 (0)