Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Unicode Parsing #12

Open
PAVAN-IS201401018 opened this issue Dec 19, 2018 · 0 comments
Open

Unicode Parsing #12

PAVAN-IS201401018 opened this issue Dec 19, 2018 · 0 comments

Comments

@PAVAN-IS201401018
Copy link

For the input \uFDCF it was skipped.

Unicode parsing has gone wrong in the code.
In think here
src/nfa/transitionlabel/TransitionLabelParserRecursive.java
parseEscapedUnicodeCharacter()
{
consumeSymbol();
StringBuilder hexNumberStr = new StringBuilder();

	hexNumberStr.append(currentSymbol);
	for (int i = 0; i < 4; i++) {
		consumeSymbol();
		hexNumberStr.append(currentSymbol);			
		
	}

}
You should consume 4 symbols to hexNumberStr but you used 5 symbols which led to out of MAX_16UNICODE range

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant