1
0
Fork 0
mirror of https://github.com/mozilla/pdf.js.git synced 2025-04-26 01:58:06 +02:00

Moves OperatorList and QueueOptimizer into separate file.

This commit is contained in:
Yury Delendik 2017-10-30 13:29:58 -05:00
parent 4e66c69d30
commit 85f544f55a
5 changed files with 548 additions and 524 deletions

View file

@ -20,10 +20,11 @@ import {
shadow, stringToBytes, stringToPDFString, Util, warn
} from '../shared/util';
import { NullStream, Stream, StreamsSequenceStream } from './stream';
import { OperatorList, PartialEvaluator } from './evaluator';
import { AnnotationFactory } from './annotation';
import { calculateMD5 } from './crypto';
import { Linearization } from './parser';
import { OperatorList } from './operator_list';
import { PartialEvaluator } from './evaluator';
import { PDFFunctionFactory } from './function';
var Page = (function PageClosure() {