summaryrefslogtreecommitdiffstats
path: root/devtools/client/debugger/src/selectors/source-blackbox.js
blob: afd5695f182245f786cdacc12babdfa4eb2cf9d6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at <http://mozilla.org/MPL/2.0/>. */

export function getBlackBoxRanges(state) {
  return state.sourceBlackBox.blackboxedRanges;
}

export function isSourceBlackBoxed(state, source) {
  // Only sources with a URL can be blackboxed.
  if (!source.url) {
    return false;
  }
  return state.sourceBlackBox.blackboxedSet.has(source.url);
}

export function isSourceOnSourceMapIgnoreList(state, source) {
  if (!source) {
    return false;
  }
  return getIgnoreListSourceUrls(state).includes(source.url);
}

export function getIgnoreListSourceUrls(state) {
  return state.sourceBlackBox.sourceMapIgnoreListUrls;
}