src/Pure/Tools/dump.scala
changeset 73359 d8a0e996614b
parent 73340 0ffcad1f6130
child 73736 a8ff6e4ee661
equal deleted inserted replaced
73358:78aa7846e91f 73359:d8a0e996614b
   103           options0 +
   103           options0 +
   104             "parallel_proofs=0" +
   104             "parallel_proofs=0" +
   105             "completion_limit=0" +
   105             "completion_limit=0" +
   106             "editor_tracing_messages=0" +
   106             "editor_tracing_messages=0" +
   107             "editor_presentation"
   107             "editor_presentation"
   108         (options1 /: aspects)({ case (opts, aspect) => (opts /: aspect.options)(_ + _) })
   108         aspects.foldLeft(options1) { case (opts, aspect) => aspect.options.foldLeft(opts)(_ + _) }
   109       }
   109       }
   110 
   110 
   111       val sessions_structure: Sessions.Structure =
   111       val sessions_structure: Sessions.Structure =
   112         Sessions.load_structure(session_options, dirs = dirs, select_dirs = select_dirs).
   112         Sessions.load_structure(session_options, dirs = dirs, select_dirs = select_dirs).
   113           selection(selection)
   113           selection(selection)