summaryrefslogtreecommitdiffstats
path: root/comm/third_party/asn1js/src/Set.ts
blob: 1bbdec447cf66c88eef2bc8c8c778d183e942957 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import { ConstructedParams, Constructed, ConstructedJson } from "./Constructed";
import { typeStore } from "./TypeStore";

export type SetParams = ConstructedParams;
export type SetJson = ConstructedJson;

export class Set extends Constructed {

  static {
    typeStore.Set = this;
  }

  public static override NAME = "SET";

  constructor(parameters: SetParams = {}) {
    super(parameters);

    this.idBlock.tagClass = 1; // UNIVERSAL
    this.idBlock.tagNumber = 17; // Set
  }

}