Skip to content

Commit 1f3e331

Browse files
committed
Add missing parameter and SemanticDB compilation to yml file
1 parent fdde912 commit 1f3e331

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.drone.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ pipeline:
3131
image: lampepfl/dotty:2019-02-06
3232
commands:
3333
- cp -R . /tmp/2/ && cd /tmp/2/
34-
- ./project/scripts/sbt ";dotty-bootstrapped/compile ;dotty-bootstrapped/test ;sjsSandbox/run"
34+
- ./project/scripts/sbt ";dotty-bootstrapped/compile ;dotty-bootstrapped/test; dotty-semanticdb/compile; dotty-semanticdb/test;sjsSandbox/run"
3535
- ./project/scripts/bootstrapCmdTests
3636

3737
community_build:

semanticdb/src/dotty/semanticdb/SemanticdbConsumer.scala

+1-1
Original file line numberDiff line numberDiff line change
@@ -756,7 +756,7 @@ class SemanticdbConsumer(sourceFilePath: java.nio.file.Path) extends TastyConsum
756756

757757
override def traverseTree(tree: Tree)(implicit ctx: Context): Unit = {
758758
tree match {
759-
case Import(path, selectors) =>
759+
case Import(_, path, selectors) =>
760760
val key = (tree.symbol.trueName, tree.pos.start)
761761
if (!packageDefinitions(key)) {
762762
packageDefinitions += key

0 commit comments

Comments
 (0)