For building the scala parser for dependency infer...
# development
f
For building the scala parser for dependency inference, I’m going to pin the version of the Scala compiler used. It will be independent of the user’s chosen Scala version. I want to ensure that changes between Scala versions don’t cause the parser to break. The pinning is easy enough to do since the Scala compiler is available as a jar artifact. Thoughts?
w
yea, probably. i don’t think it much matters which one we use for this… can effectively hardcode it.
because afaik, you shouldn’t need to have a matching scala version to what you are parsing.
f
yup going to hard code it (that’s what I meant by “pin”)
👍 1