Skip to content

Commit

Permalink
Merge pull request #304 from hippasus/master
Browse files Browse the repository at this point in the history
Parse Long object
  • Loading branch information
ststeiger authored Oct 26, 2022
2 parents 63ab523 + 4dd992b commit 8b9076c
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions PdfSharpCore/Pdf.IO/Parser.cs
Original file line number Diff line number Diff line change
Expand Up @@ -483,6 +483,10 @@ private void ParseObject(Symbol stop)
_stack.Shift(new PdfUInteger(_lexer.TokenToUInteger));
break;

case Symbol.Long:
_stack.Shift(new PdfLong(_lexer.TokenToLong));
break;

case Symbol.Real:
_stack.Shift(new PdfReal(_lexer.TokenToReal));
break;
Expand Down

0 comments on commit 8b9076c

Please sign in to comment.