What does "number of states should not exceed 16" comment in the codebase means?
Answered
Hey!
In this file:
We can read this comment:
/* IMPORTANT! number of states should not exceed 16. See JspHighlightingLexer. */
I can't find JspHightingLexer and thus, I can't find what does it mean and what should I care of. Does someone have info on this?
Thanks a lot,
Xavier
Please sign in to leave a comment.
Hi! This limitation is indeed important only for
JspHighlightingLexer
. You can safely ignore the comment, and if you need more states in your lexer, which extends this one, feel free to use them.