Searched refs:DEFAULT_PIVOT (Results 1 – 3 of 3) sorted by relevance
14 const DEFAULT_PIVOT = 24; constant39 const storage = new BinaryStorage(DEFAULT_PIVOT);42 storage.set(DEFAULT_PIVOT, field2);44 expect(storage.getPivot()).toBe(DEFAULT_PIVOT);46 expect(storage.get(DEFAULT_PIVOT)).toBe(field2);50 const storage = new BinaryStorage(DEFAULT_PIVOT);52 storage.set(DEFAULT_PIVOT + 1, field1);55 expect(storage.get(DEFAULT_PIVOT + 1)).toBe(field1);74 storage.set(DEFAULT_PIVOT, field2);75 storage.set(DEFAULT_PIVOT + 1, field3);[all …]
63 Storage.DEFAULT_PIVOT = 24;
17 constructor(pivot = Storage.DEFAULT_PIVOT) {