aboutsummaryrefslogtreecommitdiff
path: root/src/dotty/tools/dotc/core
diff options
context:
space:
mode:
authorDmitry Petrashko <dmitry.petrashko@gmail.com>2015-04-09 16:03:31 +0200
committerDmitry Petrashko <dmitry.petrashko@gmail.com>2015-04-09 16:03:31 +0200
commitf73d46adabe4195f4a68defd2c82382f37f1b7ee (patch)
tree717b97e655afeb9fb8e7e995007b938d167e70b1 /src/dotty/tools/dotc/core
parentc832ffc4243d92e4f27dd3a743b73d21cf13bd43 (diff)
downloaddotty-f73d46adabe4195f4a68defd2c82382f37f1b7ee.tar.gz
dotty-f73d46adabe4195f4a68defd2c82382f37f1b7ee.tar.bz2
dotty-f73d46adabe4195f4a68defd2c82382f37f1b7ee.zip
Make all Dotty source files end in newline.
Diffstat (limited to 'src/dotty/tools/dotc/core')
-rw-r--r--src/dotty/tools/dotc/core/Annotations.scala2
-rw-r--r--src/dotty/tools/dotc/core/Flags.scala2
-rw-r--r--src/dotty/tools/dotc/core/NameOps.scala2
-rw-r--r--src/dotty/tools/dotc/core/OrderingConstraint.scala2
-rw-r--r--src/dotty/tools/dotc/core/Periods.scala2
-rw-r--r--src/dotty/tools/dotc/core/Phases.scala2
-rw-r--r--src/dotty/tools/dotc/core/Signature.scala2
-rw-r--r--src/dotty/tools/dotc/core/Skolemization.scala2
-rw-r--r--src/dotty/tools/dotc/core/Substituters.scala2
-rw-r--r--src/dotty/tools/dotc/core/TypeApplications.scala2
-rw-r--r--src/dotty/tools/dotc/core/Uniques.scala2
-rw-r--r--src/dotty/tools/dotc/core/pickling/PositionPickler.scala2
-rw-r--r--src/dotty/tools/dotc/core/pickling/PositionUnpickler.scala2
-rw-r--r--src/dotty/tools/dotc/core/pickling/TastyPrinter.scala2
14 files changed, 14 insertions, 14 deletions
diff --git a/src/dotty/tools/dotc/core/Annotations.scala b/src/dotty/tools/dotc/core/Annotations.scala
index d264483e6..0dc7113f2 100644
--- a/src/dotty/tools/dotc/core/Annotations.scala
+++ b/src/dotty/tools/dotc/core/Annotations.scala
@@ -121,4 +121,4 @@ object Annotations {
arg <- annot.argumentConstant(0))
yield ScalaVersion.parse(arg.stringValue)
}
-} \ No newline at end of file
+}
diff --git a/src/dotty/tools/dotc/core/Flags.scala b/src/dotty/tools/dotc/core/Flags.scala
index 108a9edee..a60f7e70d 100644
--- a/src/dotty/tools/dotc/core/Flags.scala
+++ b/src/dotty/tools/dotc/core/Flags.scala
@@ -596,4 +596,4 @@ object Flags {
implicit def conjToFlagSet(conj: FlagConjunction): FlagSet =
FlagSet(conj.bits)
-} \ No newline at end of file
+}
diff --git a/src/dotty/tools/dotc/core/NameOps.scala b/src/dotty/tools/dotc/core/NameOps.scala
index 13ff92a8a..1834dbe64 100644
--- a/src/dotty/tools/dotc/core/NameOps.scala
+++ b/src/dotty/tools/dotc/core/NameOps.scala
@@ -365,4 +365,4 @@ object NameOps {
case name => name
}
}
-} \ No newline at end of file
+}
diff --git a/src/dotty/tools/dotc/core/OrderingConstraint.scala b/src/dotty/tools/dotc/core/OrderingConstraint.scala
index 53378435e..0c39a26a6 100644
--- a/src/dotty/tools/dotc/core/OrderingConstraint.scala
+++ b/src/dotty/tools/dotc/core/OrderingConstraint.scala
@@ -554,4 +554,4 @@ class OrderingConstraint(private val boundsMap: ParamBounds,
}
Text.lines(List(header, uninstVarsText, constrainedText, boundsText, orderingText, ")"))
}
-} \ No newline at end of file
+}
diff --git a/src/dotty/tools/dotc/core/Periods.scala b/src/dotty/tools/dotc/core/Periods.scala
index 0cd41a7df..6efadab7f 100644
--- a/src/dotty/tools/dotc/core/Periods.scala
+++ b/src/dotty/tools/dotc/core/Periods.scala
@@ -156,4 +156,4 @@ object Periods {
final val PhaseWidth = 6
final val PhaseMask = (1 << PhaseWidth) - 1
final val MaxPossiblePhaseId = PhaseMask
-} \ No newline at end of file
+}
diff --git a/src/dotty/tools/dotc/core/Phases.scala b/src/dotty/tools/dotc/core/Phases.scala
index aa089bc15..96066db5e 100644
--- a/src/dotty/tools/dotc/core/Phases.scala
+++ b/src/dotty/tools/dotc/core/Phases.scala
@@ -342,4 +342,4 @@ object Phases {
private implicit class getClassDeco[T](val x: T) extends AnyVal {
def getClazz: Class[_ <: T] = x.getClass.asInstanceOf[Class[_ <: T]]
}
-} \ No newline at end of file
+}
diff --git a/src/dotty/tools/dotc/core/Signature.scala b/src/dotty/tools/dotc/core/Signature.scala
index 4e041e629..8717c4f42 100644
--- a/src/dotty/tools/dotc/core/Signature.scala
+++ b/src/dotty/tools/dotc/core/Signature.scala
@@ -59,4 +59,4 @@ object Signature {
assert(!resultType.isInstanceOf[ExprType])
apply(Nil, sigName(resultType, isJava))
}
-} \ No newline at end of file
+}
diff --git a/src/dotty/tools/dotc/core/Skolemization.scala b/src/dotty/tools/dotc/core/Skolemization.scala
index 2832a3bad..1d0067a4f 100644
--- a/src/dotty/tools/dotc/core/Skolemization.scala
+++ b/src/dotty/tools/dotc/core/Skolemization.scala
@@ -123,4 +123,4 @@ trait Skolemization {
}
}
}
-} \ No newline at end of file
+}
diff --git a/src/dotty/tools/dotc/core/Substituters.scala b/src/dotty/tools/dotc/core/Substituters.scala
index b45522bf9..77ecf7fba 100644
--- a/src/dotty/tools/dotc/core/Substituters.scala
+++ b/src/dotty/tools/dotc/core/Substituters.scala
@@ -277,4 +277,4 @@ trait Substituters { this: Context =>
final class SubstParamsMap(from: BindingType, to: List[Type]) extends DeepTypeMap {
def apply(tp: Type) = substParams(tp, from, to, this)
}
-} \ No newline at end of file
+}
diff --git a/src/dotty/tools/dotc/core/TypeApplications.scala b/src/dotty/tools/dotc/core/TypeApplications.scala
index 6c3fef1a9..f08183b67 100644
--- a/src/dotty/tools/dotc/core/TypeApplications.scala
+++ b/src/dotty/tools/dotc/core/TypeApplications.scala
@@ -548,4 +548,4 @@ class TypeApplications(val self: Type) extends AnyVal {
else if (typeParams.nonEmpty) p(EtaExpand) || tryLift(self.baseClasses)
else tryLift(self.baseClasses)
}
-} \ No newline at end of file
+}
diff --git a/src/dotty/tools/dotc/core/Uniques.scala b/src/dotty/tools/dotc/core/Uniques.scala
index fcf2df30b..c24b0cabc 100644
--- a/src/dotty/tools/dotc/core/Uniques.scala
+++ b/src/dotty/tools/dotc/core/Uniques.scala
@@ -124,4 +124,4 @@ object Uniques {
}
}
}
-} \ No newline at end of file
+}
diff --git a/src/dotty/tools/dotc/core/pickling/PositionPickler.scala b/src/dotty/tools/dotc/core/pickling/PositionPickler.scala
index 8ee70719e..d791e37d2 100644
--- a/src/dotty/tools/dotc/core/pickling/PositionPickler.scala
+++ b/src/dotty/tools/dotc/core/pickling/PositionPickler.scala
@@ -72,4 +72,4 @@ class PositionPickler(pickler: TastyPickler, addrOfTree: Tree => Option[Addr]) {
buf.writeNat(totalRange.end)
traverse(roots, totalRange, record)
}
-} \ No newline at end of file
+}
diff --git a/src/dotty/tools/dotc/core/pickling/PositionUnpickler.scala b/src/dotty/tools/dotc/core/pickling/PositionUnpickler.scala
index 4d06cf792..782e871c0 100644
--- a/src/dotty/tools/dotc/core/pickling/PositionUnpickler.scala
+++ b/src/dotty/tools/dotc/core/pickling/PositionUnpickler.scala
@@ -34,4 +34,4 @@ class PositionUnpickler(reader: TastyReader) {
}
(Position(0, sourceLength), positions)
}
-} \ No newline at end of file
+}
diff --git a/src/dotty/tools/dotc/core/pickling/TastyPrinter.scala b/src/dotty/tools/dotc/core/pickling/TastyPrinter.scala
index a3d30b9b2..37a1e3b40 100644
--- a/src/dotty/tools/dotc/core/pickling/TastyPrinter.scala
+++ b/src/dotty/tools/dotc/core/pickling/TastyPrinter.scala
@@ -119,4 +119,4 @@ class TastyPrinter(bytes: Array[Byte])(implicit ctx: Context) {
for ((addr, pos) <- sorted) println(s"${addr.index}: ${offsetToInt(pos.start)} .. ${pos.end}")
}
}
-} \ No newline at end of file
+}