c2nes / javalang

Pure Python Java parser and tools
MIT License
736 stars 161 forks source link

found a bug #6

Closed ravenzhang closed 10 years ago

ravenzhang commented 10 years ago

I found a bug, in file : tokenizer.py line 470 :
escape_code = int(self.data[j:j+4], 16) should be: escape_code = int(data[j:j+4], 16)

Thanks for your great job!

c2nes commented 10 years ago

Thanks for the heads up @ravenzhang! I just committed and pushed the fix.