FSC recompiles every time
问题 FSC recompiles my .scala files every time even there is no need - I can compile it twice without editing anything between attempts and it recompiles them! For example, I have 2 files Hello.scala class Hello{ print("hello") } And Tokens.scala: abstract class Token(val str: String, val start: Int, val end: Int) {override def toString = getClass.getSimpleName + "(" + "[" + start + "-" + end + "]" + str + ")"} class InputToken(str: String, start: Int, end: Int) extends Token(str, start, end)