lf-lang / vscode-lingua-franca

Lingua Franca extension for Visual Studio Code
Other
4 stars 3 forks source link

Support for Java versions > 17 #83

Closed lhstrh closed 1 year ago

lhstrh commented 1 year ago

This change makes the check for Java 17 less strict and also permits newer versions.

petervdonovan commented 1 year ago

Unfortunately the output of javac -version for Java 19 is incompatible with our parsing strategy, which was designed around the output of javac -version for Java 17. Working on a fix.

petervdonovan commented 1 year ago

I think java has the same quirk as javac in version 19. I think that we ideally should support Java 19 in this PR because if we don't, then the error messages that Java 19 users get will not make sense. I'll try to get to it tomorrow.