Skip to content

Commit 143177c

Browse files
committed
empty line, small cosmetic errors fix
1 parent ae580af commit 143177c

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

compiler/src/dotty/tools/dotc/util/Signatures.scala

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ import core.Constants.Constant
77
import core.Contexts._
88
import core.Denotations.SingleDenotation
99
import core.Flags
10+
import core.Names._
1011
import core.Types._
1112
import util.Spans.Span
1213
import reporting._
13-
import core.Names._
1414

1515

1616
object Signatures {
@@ -59,7 +59,8 @@ object Signatures {
5959
case Apply(fun, params) => callInfo(span, params, fun, Signatures.countParams(fun))
6060
}.getOrElse((0, 0, Nil))
6161

62-
def callInfo( span: Span,
62+
def callInfo(
63+
span: Span,
6364
params: List[tpd.Tree],
6465
fun: tpd.Tree,
6566
alreadyAppliedCount : Int

language-server/test/dotty/tools/languageserver/SignatureHelpTest.scala

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,6 @@ class SignatureHelpTest {
4040
| case s @ Even(${m1}) => println(s"s has an even number of characters")
4141
| case s => println(s"s has an odd number of characters")
4242
"""
43-
4443
.signatureHelp(m1, List(), Some(0), 0)
4544

4645
}
@@ -59,7 +58,6 @@ class SignatureHelpTest {
5958
| case Nat(${m1}) => println(s"n is a natural number")
6059
| case _ => ()
6160
"""
62-
6361
.signatureHelp(m1, List(signature), Some(0), 0)
6462

6563
}

0 commit comments

Comments
 (0)