aboutsummaryrefslogtreecommitdiff
path: root/src/dotty/tools/dotc/typer
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/typer
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/typer')
-rw-r--r--src/dotty/tools/dotc/typer/Applications.scala2
-rw-r--r--src/dotty/tools/dotc/typer/Checking.scala2
-rw-r--r--src/dotty/tools/dotc/typer/ErrorReporting.scala2
-rw-r--r--src/dotty/tools/dotc/typer/FrontEnd.scala2
-rw-r--r--src/dotty/tools/dotc/typer/ImportInfo.scala2
-rw-r--r--src/dotty/tools/dotc/typer/Mode.scala2
-rw-r--r--src/dotty/tools/dotc/typer/Namer.scala2
-rw-r--r--src/dotty/tools/dotc/typer/ProtoTypes.scala2
-rw-r--r--src/dotty/tools/dotc/typer/ReTyper.scala2
-rw-r--r--src/dotty/tools/dotc/typer/Typer.scala2
10 files changed, 10 insertions, 10 deletions
diff --git a/src/dotty/tools/dotc/typer/Applications.scala b/src/dotty/tools/dotc/typer/Applications.scala
index 582642325..c5bd70c1e 100644
--- a/src/dotty/tools/dotc/typer/Applications.scala
+++ b/src/dotty/tools/dotc/typer/Applications.scala
@@ -1023,4 +1023,4 @@ trait Applications extends Compatibility { self: Typer =>
def typedApply(fun: Tree, methRef: TermRef, args: List[Tree], resultType: Type)(implicit ctx: Context): Tree =
typedApply(untpd.Apply(untpd.TypedSplice(fun), args), fun, methRef, args, resultType)
-*/ \ No newline at end of file
+*/
diff --git a/src/dotty/tools/dotc/typer/Checking.scala b/src/dotty/tools/dotc/typer/Checking.scala
index b8b4c9d2c..9303572d2 100644
--- a/src/dotty/tools/dotc/typer/Checking.scala
+++ b/src/dotty/tools/dotc/typer/Checking.scala
@@ -333,4 +333,4 @@ trait NoChecking extends Checking {
override def checkImplicitParamsNotSingletons(vparamss: List[List[ValDef]])(implicit ctx: Context): Unit = ()
override def checkFeasible(tp: Type, pos: Position, where: => String = "")(implicit ctx: Context): Type = tp
override def checkNoDoubleDefs(cls: Symbol)(implicit ctx: Context): Unit = ()
-} \ No newline at end of file
+}
diff --git a/src/dotty/tools/dotc/typer/ErrorReporting.scala b/src/dotty/tools/dotc/typer/ErrorReporting.scala
index 2ed720f83..b3089c99c 100644
--- a/src/dotty/tools/dotc/typer/ErrorReporting.scala
+++ b/src/dotty/tools/dotc/typer/ErrorReporting.scala
@@ -148,4 +148,4 @@ object ErrorReporting {
final val nonSensicalEndTag = "</nonsensical>"
}
-} \ No newline at end of file
+}
diff --git a/src/dotty/tools/dotc/typer/FrontEnd.scala b/src/dotty/tools/dotc/typer/FrontEnd.scala
index f6f68d736..8ec5079e2 100644
--- a/src/dotty/tools/dotc/typer/FrontEnd.scala
+++ b/src/dotty/tools/dotc/typer/FrontEnd.scala
@@ -59,4 +59,4 @@ class FrontEnd extends Phase {
enterSyms
typeCheck
}
-} \ No newline at end of file
+}
diff --git a/src/dotty/tools/dotc/typer/ImportInfo.scala b/src/dotty/tools/dotc/typer/ImportInfo.scala
index 9152a8d54..30ab19fd8 100644
--- a/src/dotty/tools/dotc/typer/ImportInfo.scala
+++ b/src/dotty/tools/dotc/typer/ImportInfo.scala
@@ -111,4 +111,4 @@ class ImportInfo(val sym: Symbol, val selectors: List[untpd.Tree], val isRootImp
}
i"import $exprStr.$selectorStr"
}
-} \ No newline at end of file
+}
diff --git a/src/dotty/tools/dotc/typer/Mode.scala b/src/dotty/tools/dotc/typer/Mode.scala
index d7f3420cc..95c15f8ab 100644
--- a/src/dotty/tools/dotc/typer/Mode.scala
+++ b/src/dotty/tools/dotc/typer/Mode.scala
@@ -64,4 +64,4 @@ object Mode {
val AllowDependentFunctions = newMode(9, "AllowDependentFunctions")
val PatternOrType = Pattern | Type
-} \ No newline at end of file
+}
diff --git a/src/dotty/tools/dotc/typer/Namer.scala b/src/dotty/tools/dotc/typer/Namer.scala
index e9e4d4c87..01c1c28ab 100644
--- a/src/dotty/tools/dotc/typer/Namer.scala
+++ b/src/dotty/tools/dotc/typer/Namer.scala
@@ -765,4 +765,4 @@ class Namer { typer: Typer =>
sym.info = NoCompleter
checkNonCyclic(sym, unsafeInfo, reportErrors = true)
}
-} \ No newline at end of file
+}
diff --git a/src/dotty/tools/dotc/typer/ProtoTypes.scala b/src/dotty/tools/dotc/typer/ProtoTypes.scala
index f646f7ecd..e2d4f6978 100644
--- a/src/dotty/tools/dotc/typer/ProtoTypes.scala
+++ b/src/dotty/tools/dotc/typer/ProtoTypes.scala
@@ -433,4 +433,4 @@ object ProtoTypes {
case _ => None
}
}
-} \ No newline at end of file
+}
diff --git a/src/dotty/tools/dotc/typer/ReTyper.scala b/src/dotty/tools/dotc/typer/ReTyper.scala
index 901542f21..d3a5fd05f 100644
--- a/src/dotty/tools/dotc/typer/ReTyper.scala
+++ b/src/dotty/tools/dotc/typer/ReTyper.scala
@@ -98,4 +98,4 @@ class ReTyper extends Typer {
}
override def checkVariance(tree: Tree)(implicit ctx: Context) = ()
-} \ No newline at end of file
+}
diff --git a/src/dotty/tools/dotc/typer/Typer.scala b/src/dotty/tools/dotc/typer/Typer.scala
index 58d866ac1..4bb9b90d4 100644
--- a/src/dotty/tools/dotc/typer/Typer.scala
+++ b/src/dotty/tools/dotc/typer/Typer.scala
@@ -1400,4 +1400,4 @@ class Typer extends Namer with TypeAssigner with Applications with Implicits wit
}
}
}
-} \ No newline at end of file
+}