summaryrefslogtreecommitdiff
path: root/src/compiler
diff options
context:
space:
mode:
authorPaul Phillips <paulp@improving.org>2012-04-13 10:57:41 +0100
committerPaul Phillips <paulp@improving.org>2012-04-13 10:57:41 +0100
commit4b95f21060078af1ae7037ce2e6cfc4c1a5a155d (patch)
tree2f94274d590ded866d6a3381d3d887569fc4f69d /src/compiler
parent821229f7fe966f955ebfa87ed0d6ed3760d3f875 (diff)
downloadscala-4b95f21060078af1ae7037ce2e6cfc4c1a5a155d.tar.gz
scala-4b95f21060078af1ae7037ce2e6cfc4c1a5a155d.tar.bz2
scala-4b95f21060078af1ae7037ce2e6cfc4c1a5a155d.zip
Introducing some whitespace before colons.
Maybe helping -Xcheckinit along too.
Diffstat (limited to 'src/compiler')
-rw-r--r--src/compiler/scala/reflect/internal/StdNames.scala7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/compiler/scala/reflect/internal/StdNames.scala b/src/compiler/scala/reflect/internal/StdNames.scala
index 1666887133..04f67a3196 100644
--- a/src/compiler/scala/reflect/internal/StdNames.scala
+++ b/src/compiler/scala/reflect/internal/StdNames.scala
@@ -268,8 +268,6 @@ trait StdNames extends NameManglers { self: SymbolTable =>
case _ => newTermName("x$" + i)
}
- // [Eugene to Paul] see comments in StandardNames.scala to find out why's this here
- val QQQ = ???
val ??? = encode("???")
val wrapRefArray: NameType = "wrapRefArray"
@@ -641,14 +639,9 @@ trait StdNames extends NameManglers { self: SymbolTable =>
val ZOR = encode("||")
// unary operators
- // [Eugene to Paul] see comments in StandardNames.scala to find out why's this here
- val UNARY_TILDE = UNARY_~
val UNARY_~ = encode("unary_~")
- val UNARY_PLUS = UNARY_+
val UNARY_+ = encode("unary_+")
- val UNARY_MINUS = UNARY_-
val UNARY_- = encode("unary_-")
- val UNARY_NOT = UNARY_!
val UNARY_! = encode("unary_!")
// Grouped here so Cleanup knows what tests to perform.