wesleyp
wesleyp

Reputation: 1

Java Classes in Nashorn

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

Answers (1)

Allan Wojcik da Silva
Allan Wojcik da Silva

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

Related Questions