summaryrefslogtreecommitdiff
path: root/sources
diff options
context:
space:
mode:
authorMartin Odersky <odersky@gmail.com>2004-03-26 13:45:45 +0000
committerMartin Odersky <odersky@gmail.com>2004-03-26 13:45:45 +0000
commitc44e8bb3c3a24709f2e137392aa4eab6f0f4ed59 (patch)
tree7ed8d03ca9cceaac466bfc139d024684a65282ae /sources
parent13005976275b6f629b9cce2138df189a532f43c3 (diff)
downloadscala-c44e8bb3c3a24709f2e137392aa4eab6f0f4ed59.tar.gz
scala-c44e8bb3c3a24709f2e137392aa4eab6f0f4ed59.tar.bz2
scala-c44e8bb3c3a24709f2e137392aa4eab6f0f4ed59.zip
*** empty log message ***
Diffstat (limited to 'sources')
-rwxr-xr-xsources/scala/tools/scalac/typechecker/View.scala15
1 files changed, 15 insertions, 0 deletions
diff --git a/sources/scala/tools/scalac/typechecker/View.scala b/sources/scala/tools/scalac/typechecker/View.scala
new file mode 100755
index 0000000000..ae736c7bc9
--- /dev/null
+++ b/sources/scala/tools/scalac/typechecker/View.scala
@@ -0,0 +1,15 @@
+/* ____ ____ ____ ____ ______ *\
+** / __// __ \/ __// __ \/ ____/ SOcos COmpiles Scala **
+** __\_ \/ /_/ / /__/ /_/ /\_ \ (c) 2002, LAMP/EPFL **
+** /_____/\____/\___/\____/____/ **
+**
+** $Id$
+\* */
+import scalac.symtab._;
+import scalac.ast._;
+
+package scala.tools.scalac.typechecker {
+
+case class View(sym: Symbol, symtype: Type, qual: Tree, context: Context);
+
+}