This website works better with JavaScript.
Explore
Help
Sign In
akira
/
pdfjs-dist
Watch
1
Star
0
Fork
You've already forked pdfjs-dist
0
Code
Issues
Pull Requests
Projects
Releases
Wiki
Activity
Generic build of PDF.js library.
8045
Commits
1
Branch
1804
Tags
126 MiB
Tree:
56a43a3181
pdfjs-dist
/
external
/
builder
/
fixtures
/
if-empty-expected.js
2 lines
56 B
Raw
Normal View
History
Unescape
Escape
Fix preprocessor: nesting, error & tests Features / bug fixes in the preprocessor: - Add word boundary after regex for preprocessor token matching. Previously, when you mistakenly used "#ifdef" instead of "#if", the line would be parsed as a preprocessor directive (because "#ifdef" starts with "#if"), but without condition (because "def" does not start with a space). Consequently, the condition would always be false and anything between "#ifdef" and "#endif" would not be included. - Add validation and error reporting everywhere, to aid debugging. - Support nested comments (by accounting for the whole stack of conditions, instead of only the current one). - Add #elif preprocessor command. Could be used as follows: //#if !FEATURE_ENABLED //#error FEATURE_ENABLED must be set //#endif - Add #error preprocessor command. - Add end-of-line word boundary after "-->" in the comment trimmer. Otherwise the pattern would also match "-->" in the middle of a line, and incorrectly convert something like "while(i-->0)" to "while(i0)". Code health: - Add unit tests for the preprocessor (run external/builder/test.js). - Fix broken link to MDN (resolved to DXR). - Refactor to use STATE_* names instead of magic numbers (the original meaning of the numbers is preserved, with one exception). - State 3 has been split in two states, to distinguish between being in an #if and #else. This is needed to ensure that #else cannot be started without an #if.
10 years ago
//Error: No JavaScript expression given at __filename:2