Reputation: 1
I need to compile many JavaScript files to run in Nashorn. Do each of these files generate a Java class? Do these Java classes have file handles in the operating system?
Upvotes: 0
Views: 97
Reputation: 21
Compile JavaScript? Nashorn is just an engine that interprets Javascript, that's all. That said, there are no classes generated for your Javascript files.
Upvotes: 2