Hacker News new | ask | show | jobs
by brown9-2 5699 days ago
I'm curious, are you building your own parser from scratch? There are several existing libraries out there which can work with Java source code either at the bytecode or syntax-tree level.

Depending on your purpose, might be a whole lot easier to re-use an existing implementation and focus on whatever you're planning to use this parser for...

1 comments

I'm using Irony as the parser. But I still have to translate the grammar into C# code.

I was unable to find an existing Java parser in C#. Do you know of one?