Reputation: 521
I was profiling a java based web application(InsecureWebApp from OWASP) and came across methods from org/eclipse/jdt/internal/compiler package. I googled it to know for what purpose they are used.. I looked here (http://www.cs.utep.edu/cheon/download/jml4c/javadocs/org/eclipse/jdt/internal/compiler/package-summary.html) but could not understand what is its purpose in general.
Can somebody please help me out here?
Upvotes: 2
Views: 1147
Reputation:
I would guess that is the Eclipse Java compiler.
Eclipse doesn't use the standard compiler, but have their own that compiles your code incrementally while typing.
Upvotes: 0