aboutsummaryrefslogtreecommitdiff
path: root/src/dotty/tools
diff options
context:
space:
mode:
authorMartin Odersky <odersky@gmail.com>2013-11-28 23:08:47 +0100
committerMartin Odersky <odersky@gmail.com>2013-11-28 23:08:47 +0100
commitb47be3e0c1eb274b4e806b7606d738837ba9b8a1 (patch)
treeb0690d5c019ae08b66d1c2d0d2d46d50166ceadc /src/dotty/tools
parente242ee2007992dfac0dbc08461b693c1608dad49 (diff)
downloaddotty-b47be3e0c1eb274b4e806b7606d738837ba9b8a1.tar.gz
dotty-b47be3e0c1eb274b4e806b7606d738837ba9b8a1.tar.bz2
dotty-b47be3e0c1eb274b4e806b7606d738837ba9b8a1.zip
File name renaming
Bringing file names tpd/untpd in line with the objects they define.
Diffstat (limited to 'src/dotty/tools')
-rw-r--r--src/dotty/tools/dotc/ast/tpd.scala (renamed from src/dotty/tools/dotc/ast/TypedTrees.scala)0
-rw-r--r--src/dotty/tools/dotc/ast/untpd.scala (renamed from src/dotty/tools/dotc/ast/UntypedTrees.scala)0
-rw-r--r--src/dotty/tools/dotc/core/TyperState.scala5
3 files changed, 1 insertions, 4 deletions
diff --git a/src/dotty/tools/dotc/ast/TypedTrees.scala b/src/dotty/tools/dotc/ast/tpd.scala
index bf3b3633b..bf3b3633b 100644
--- a/src/dotty/tools/dotc/ast/TypedTrees.scala
+++ b/src/dotty/tools/dotc/ast/tpd.scala
diff --git a/src/dotty/tools/dotc/ast/UntypedTrees.scala b/src/dotty/tools/dotc/ast/untpd.scala
index 774f24394..774f24394 100644
--- a/src/dotty/tools/dotc/ast/UntypedTrees.scala
+++ b/src/dotty/tools/dotc/ast/untpd.scala
diff --git a/src/dotty/tools/dotc/core/TyperState.scala b/src/dotty/tools/dotc/core/TyperState.scala
index 53782c642..bac33e143 100644
--- a/src/dotty/tools/dotc/core/TyperState.scala
+++ b/src/dotty/tools/dotc/core/TyperState.scala
@@ -17,6 +17,7 @@ class TyperState(val reporter: Reporter) extends DotClass with Showable {
def constraint: Constraint = new Constraint(SimpleMap.Empty)
def constraint_=(c: Constraint): Unit = {}
+ /** The uninstantiated variables */
def uninstVars = constraint.uninstVars
/** Gives for each instantiated type var that does not yet have its `inst` field
@@ -87,7 +88,3 @@ extends TyperState(reporter) {
override def toText(printer: Printer): Text = constraint.toText(printer)
}
-
-object MutableTyperState {
- private def toStr(x: Any) = x.toString
-}