mirror of
https://github.com/codedread/bitjs
synced 2025-10-03 17:49:16 +02:00
Fix import error in unrar/rarvm, v1.2.4
This commit is contained in:
parent
ebfb78755c
commit
3d98e9b211
3 changed files with 9 additions and 2 deletions
|
@ -2,6 +2,12 @@
|
||||||
|
|
||||||
All notable changes to this project will be documented in this file.
|
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
|
## [1.2.3] - 2024-02-04
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
|
|
@ -336,7 +336,7 @@ class VM_PreparedProgram {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*/
|
*/
|
||||||
class UnpackFilter {
|
export class UnpackFilter {
|
||||||
constructor() {
|
constructor() {
|
||||||
/** @type {number} */
|
/** @type {number} */
|
||||||
this.BlockStart = 0;
|
this.BlockStart = 0;
|
||||||
|
|
|
@ -14,7 +14,8 @@
|
||||||
import { BitStream } from '../io/bitstream.js';
|
import { BitStream } from '../io/bitstream.js';
|
||||||
import { ByteStream } from '../io/bytestream.js';
|
import { ByteStream } from '../io/bytestream.js';
|
||||||
import { ByteBuffer } from '../io/bytebuffer.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 = {
|
const UnarchiveState = {
|
||||||
NOT_STARTED: 0,
|
NOT_STARTED: 0,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue