src/Pure/Tools/dump.scala
changeset 72690 53064415757a
parent 72375 e48d93811ed7
child 72691 2126cf946086
equal deleted inserted replaced
72685:a7877e14e7f8 72690:53064415757a
    57             args.write(Path.explode("messages.yxml"),
    57             args.write(Path.explode("messages.yxml"),
    58               args.snapshot.messages.iterator.map(_._1).toList)
    58               args.snapshot.messages.iterator.map(_._1).toList)
    59         }),
    59         }),
    60       Aspect("latex", "generated LaTeX source",
    60       Aspect("latex", "generated LaTeX source",
    61         { case args =>
    61         { case args =>
    62             for (entry <- args.snapshot.exports if entry.name == "document.tex")
    62             for (entry <- args.snapshot.exports if entry.name.startsWith("document/")) {
    63               args.write(Path.explode(entry.name), entry.uncompressed())
    63               args.write(Path.explode(entry.name), entry.uncompressed())
       
    64             }
    64         }),
    65         }),
    65       Aspect("theory", "foundational theory content",
    66       Aspect("theory", "foundational theory content",
    66         { case args =>
    67         { case args =>
    67             for {
    68             for {
    68               entry <- args.snapshot.exports
    69               entry <- args.snapshot.exports