* Resolve an object by reference. * * Synchronously resolves the reference, parsing from the in-memory * buffer if not already cached. All PDF data is loaded at parse time, * so this operation never requires I/O.
(ref: PdfRef)
| 118 | * so this operation never requires I/O. |
| 119 | */ |
| 120 | resolve(ref: PdfRef): PdfObject | null { |
| 121 | return this.registry.resolve(ref); |
| 122 | } |
| 123 | |
| 124 | /** |
| 125 | * Get the reference for an object. |
no outgoing calls
no test coverage detected