I cleary have the unicode whitespace characters defined in my SKIP token like so:
SKIP {
" "
| "\r"
| "\n"
| "\t"
}
However, when I run Java CC it parses all the tokens fine until I hit any of the above mentioning white space characters and it throws the following error:
Exception in thread "main" prjct1.TokenMgrError: Lexical error at line 1, column 25. Encountered: "\r" (13), after : "Random:Word:Here"
So as you can see it runs fine until it hits the "\r". I get the same error with " ", "\n", and "\t". Any thoughts? thanks