more operations;
authorwenzelm
Mon, 11 Dec 2017 14:10:12 +0100
changeset 67181 0da2811afd87
parent 67180 dcac4659d482
child 67182 bdc03e20fce3
more operations;
src/Pure/General/path.scala
--- a/src/Pure/General/path.scala	Sun Dec 10 20:50:09 2017 +0100
+++ b/src/Pure/General/path.scala	Mon Dec 11 14:10:12 2017 +0100
@@ -215,4 +215,7 @@
 
   def absolute_file: JFile = File.absolute(file)
   def canonical_file: JFile = File.canonical(file)
+
+  def absolute: Path = File.path(absolute_file)
+  def canonical: Path = File.path(canonical_file)
 }