Mishax
Mishax

Reputation: 4582

Is it possible to parse Scala with JDT

I am using JDT to get ASTs and type resolvers for Java sources in Eclipse, is there a way to achieve the same for Scala sources in Scala projects?

Upvotes: 0

Views: 97

Answers (1)

Jörg W Mittag
Jörg W Mittag

Reputation: 369468

No, it is not possible to parse Scala with Java Development Tools. Scala and Java are two completely different languages. They have different syntax, different semantics, different type systems.

Upvotes: 1

Related Questions