1
0
Fork 0
mirror of https://github.com/codedread/bitjs synced 2025-10-03 09:39:16 +02:00

Fix import error in unrar/rarvm, v1.2.4

This commit is contained in:
Jeff Schiller 2024-12-08 17:13:52 -08:00
parent ebfb78755c
commit 3d98e9b211
3 changed files with 9 additions and 2 deletions

View file

@ -2,6 +2,12 @@
All notable changes to this project will be documented in this file.
## [1.2.4] - 2024-12-08
### Fixed
- Fixed import error in unrar/rarvm.
## [1.2.3] - 2024-02-04
### Added

View file

@ -336,7 +336,7 @@ class VM_PreparedProgram {
/**
*/
class UnpackFilter {
export class UnpackFilter {
constructor() {
/** @type {number} */
this.BlockStart = 0;

View file

@ -14,7 +14,8 @@
import { BitStream } from '../io/bitstream.js';
import { ByteStream } from '../io/bytestream.js';
import { ByteBuffer } from '../io/bytebuffer.js';
import { RarVM, VM_GLOBALMEMADDR, VM_GLOBALMEMSIZE, VM_FIXEDGLOBALSIZE, MAXWINMASK } from './rarvm.js';
import { RarVM, UnpackFilter, VM_GLOBALMEMADDR, VM_GLOBALMEMSIZE,
VM_FIXEDGLOBALSIZE, MAXWINMASK } from './rarvm.js';
const UnarchiveState = {
NOT_STARTED: 0,