summaryrefslogtreecommitdiff
path: root/sources/scalac/typechecker
diff options
context:
space:
mode:
authorGilles Dubochet <gilles.dubochet@epfl.ch>2005-12-18 18:33:03 +0000
committerGilles Dubochet <gilles.dubochet@epfl.ch>2005-12-18 18:33:03 +0000
commitd3819b93ab8b2de3d5cc35c33b8258ccdb5a931a (patch)
treedfc6f7f497e58ea3321e6f687b11313d2afa86b5 /sources/scalac/typechecker
parent0e82079908655682e5140ad521cef0572cb6d2a4 (diff)
downloadscala-d3819b93ab8b2de3d5cc35c33b8258ccdb5a931a.tar.gz
scala-d3819b93ab8b2de3d5cc35c33b8258ccdb5a931a.tar.bz2
scala-d3819b93ab8b2de3d5cc35c33b8258ccdb5a931a.zip
Removed old Scalac code in sources and various ...
Removed old Scalac code in sources and various other obsolete elements.
Diffstat (limited to 'sources/scalac/typechecker')
-rw-r--r--sources/scalac/typechecker/AnalyzerPhase.java32
-rw-r--r--sources/scalac/typechecker/Infer.java23
2 files changed, 0 insertions, 55 deletions
diff --git a/sources/scalac/typechecker/AnalyzerPhase.java b/sources/scalac/typechecker/AnalyzerPhase.java
deleted file mode 100644
index 517d4713dc..0000000000
--- a/sources/scalac/typechecker/AnalyzerPhase.java
+++ /dev/null
@@ -1,32 +0,0 @@
-/* ____ ____ ____ ____ ______ *\
-** / __// __ \/ __// __ \/ ____/ SOcos COmpiles Scala **
-** __\_ \/ /_/ / /__/ /_/ /\_ \ (c) 2002-2005, LAMP/EPFL **
-** /_____/\____/\___/\____/____/ **
-\* */
-
-// $Id$
-
-package scalac.typechecker;
-
-import scalac.Global;
-import scalac.Phase;
-import scalac.PhaseDescriptor;
-import scalac.ast.TreeGen;
-import scalac.symtab.Definitions;
-import scalac.symtab.Symbol;
-
-
-public abstract class AnalyzerPhase extends Phase {
-
- public final TreeGen gen;
-
- /** Initializes this instance. */
- public AnalyzerPhase(Global global, PhaseDescriptor descriptor) {
- super(global, descriptor);
- global.definitions = new Definitions(global);
- this.gen = new TreeGen(global, global.make);
- }
-
- public abstract void addConsoleImport(Symbol module);
-
-}
diff --git a/sources/scalac/typechecker/Infer.java b/sources/scalac/typechecker/Infer.java
deleted file mode 100644
index 528ca7b47d..0000000000
--- a/sources/scalac/typechecker/Infer.java
+++ /dev/null
@@ -1,23 +0,0 @@
-/* ____ ____ ____ ____ ______ *\
-** / __// __ \/ __// __ \/ ____/ SOcos COmpiles Scala **
-** __\_ \/ /_/ / /__/ /_/ /\_ \ (c) 2002, LAMP/EPFL **
-** /_____/\____/\___/\____/____/ **
-\* */
-
-// $Id$
-
-package scalac.typechecker;
-
-import scalac.symtab.Symbol;
-import scalac.symtab.Type;
-
-public abstract class Infer {
-
- /** throw a type error if arguments not within bounds.
- */
- public abstract void checkBounds(Symbol[] tparams, Type[] targs, String prefix);
-
-
- public abstract Type skipViewParams(Symbol[] tparams, Type tp);
-
-}