src/Pure/Tools/update_semicolons.scala
changeset 58861 5ff61774df11
child 59083 88b0b1f28adc
equal deleted inserted replaced
58860:fee7cfa69c50 58861:5ff61774df11
       
     1 /*  Title:      Pure/Tools/update_semicolons.scala
       
     2     Author:     Makarius
       
     3 
       
     4 Remove obsolete semicolons from theory sources.
       
     5 */
       
     6 
       
     7 package isabelle
       
     8 
       
     9 
       
    10 object Update_Semicolons
       
    11 {
       
    12   def update_semicolons(path: Path)
       
    13   {
       
    14     val text0 = File.read(path)
       
    15     val text1 =
       
    16       (for (tok <- Outer_Syntax.empty.scan(text0).iterator if tok.source != ";")
       
    17         yield tok.source).mkString
       
    18 
       
    19     if (text0 != text1) {
       
    20       Output.writeln("changing " + path)
       
    21       File.write_backup2(path, text1)
       
    22     }
       
    23   }
       
    24 
       
    25 
       
    26   /* command line entry point */
       
    27 
       
    28   def main(args: Array[String])
       
    29   {
       
    30     Command_Line.tool0 {
       
    31       args.foreach(arg => update_semicolons(Path.explode(arg)))
       
    32     }
       
    33   }
       
    34 }