Move the DecodeStream and StreamsSequenceStream from src/core/stream.js and into its own file

This commit is contained in:
Jonas Jenwald 2021-04-27 16:18:52 +02:00
parent 213e1c389c
commit 30a22a168d
16 changed files with 240 additions and 224 deletions

View file

@ -47,7 +47,6 @@ import {
Ref,
RefSet,
} from "./primitives.js";
import { DecodeStream, NullStream } from "./stream.js";
import {
ErrorFont,
Font,
@ -85,10 +84,12 @@ import {
} from "./image_utils.js";
import { bidi } from "./bidi.js";
import { ColorSpace } from "./colorspace.js";
import { DecodeStream } from "./decode_stream.js";
import { getGlyphsUnicode } from "./glyphlist.js";
import { getLookupTableFactory } from "./core_utils.js";
import { getMetrics } from "./metrics.js";
import { MurmurHash3_64 } from "./murmurhash3.js";
import { NullStream } from "./stream.js";
import { OperatorList } from "./operator_list.js";
import { PDFImage } from "./image.js";