Main.scala contains the following option definition: ``` opt("s", "skip-unchanged", "Don't re-generate if the target is newer than the input", { compiler.skipUnchanged = true; () }) ``` However, the boolean compiler.skipUnchanged is never read. This function doesn't seem implemented.