summaryrefslogtreecommitdiff
path: root/sources/scalac/ast
diff options
context:
space:
mode:
authorpaltherr <paltherr@epfl.ch>2003-06-16 12:50:44 +0000
committerpaltherr <paltherr@epfl.ch>2003-06-16 12:50:44 +0000
commit0494d60bfd4ec2c6b69592cea0c205b26cf426d7 (patch)
tree5d4cf5efbe76b7a0825b7150902dc49136f616b4 /sources/scalac/ast
parent44ca12f55bced0a955596402d1bd1ae264358e4b (diff)
downloadscala-0494d60bfd4ec2c6b69592cea0c205b26cf426d7.tar.gz
scala-0494d60bfd4ec2c6b69592cea0c205b26cf426d7.tar.bz2
scala-0494d60bfd4ec2c6b69592cea0c205b26cf426d7.zip
- Made SourceFile and Position scala-independan...
- Made SourceFile and Position scala-independant (moved them to ch.epfl.lamp.util) - Added position arguments to methods of class Reporter - Changed printing of positions to display the whole path not only the file name.
Diffstat (limited to 'sources/scalac/ast')
-rw-r--r--sources/scalac/ast/Tree.java.tmpl3
1 files changed, 2 insertions, 1 deletions
diff --git a/sources/scalac/ast/Tree.java.tmpl b/sources/scalac/ast/Tree.java.tmpl
index eaf9b7647c..4865a876ef 100644
--- a/sources/scalac/ast/Tree.java.tmpl
+++ b/sources/scalac/ast/Tree.java.tmpl
@@ -8,12 +8,13 @@
package scalac.ast;
+import ch.epfl.lamp.util.Position;
+
import scalac.Global;
import scalac.checkers.CheckTreeNodes;
import scalac.symtab.Symbol;
import scalac.symtab.Type;
import scalac.util.Debug;
-import scalac.util.Position;
import java.io.StringWriter;
import scalac.ast.printer.TextTreePrinter;
{#Imports#}