Skip to content

Commit

Permalink
Parse Long object
Browse files Browse the repository at this point in the history
  • Loading branch information
hippasus committed Oct 21, 2022
1 parent 63ab523 commit 4dd992b
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 4dd992b

Please sign in to comment.