summaryrefslogtreecommitdiff
path: root/deps/v8/tools/turbolizer/selection.js
blob: 9bd937c84a59166db1024deced829282446060f2 (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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
// Copyright 2015 the V8 project authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

class Selection {
  constructor(stringKeyFnc) {
    this.selection = new Map();
    this.stringKey = stringKeyFnc;
  }

  isEmpty() {
    return this.selection.size == 0;
  }

  clear() {
    this.selection = new Map();
  }

  select(s, isSelected) {
    if (!isIterable(s)) { s = [s]; }
    for (const i of s) {
      if (!i) continue;
      if (isSelected == undefined) {
        isSelected = !this.selection.has(this.stringKey(i));
      }
      if (isSelected) {
        this.selection.set(this.stringKey(i), i);
      } else {
        this.selection.delete(this.stringKey(i));
      }
    }
  }

  isSelected(i) {
    return this.selection.has(this.stringKey(i));
  }

  isKeySelected(key) {
    return this.selection.has(key);
  }

  selectedKeys() {
    var result = new Set();
    for (var i of this.selection.keys()) {
      result.add(i);
    }
    return result;
  }

  detachSelection() {
    var result = new Set();
    for (var i of this.selection.keys()) {
      result.add(i);
    }
    this.clear();
    return result;
  }

  [Symbol.iterator]() { return this.selection.values() }
}