在Intellij中找不到Scala 2.13和Mill项目中带有宏的生成的源

时间:2019-10-29 19:31:00

标签: scala intellij-idea scala-macros zio mill

我在 Scala 2.13 / Mill 项目中使用zio-macros

这里是示例:

@accessible
@mockable
trait AccountObserver {
  val accountObserver: AccountObserver.Service[Any]
}

object AccountObserver {
  trait Service[R] {
    def processEvent(event: String): ZIO[R, Nothing, Unit]
  }

  // autogenerated `object Service { ... }`
  // autogenerated `object > extends Service[AccountObserver] { ... }`
  // autogenerated `implicit val mockable: Mockable[AccountObserver] = ...`
}

我可以运行测试,它会找到自动生成的代码。

问题在于, Intellij 中对自动生成的代码的引用编译。

我必须配置一些东西还是缺少什​​么?

2 个答案:

答案 0 :(得分:1)

以下项目编译

build.sc

import mill._, scalalib._

object root extends ScalaModule {
  def scalaVersion = "2.13.1"
  val zioMacrosV = "0.4.0"
  def ivyDeps = Agg(
    ivy"dev.zio::zio-macros-core:${zioMacrosV}",
    ivy"dev.zio::zio-macros-access:${zioMacrosV}",
    ivy"dev.zio::zio-macros-mock:${zioMacrosV}"
  )
  def scalacOptions = Seq(
    "-Ymacro-annotations",
    "-Ymacro-debug-lite"
  )
}

root / src / App.scala

import zio.ZIO
import zio.macros.access.accessible
import zio.macros.mock.mockable

@accessible
@mockable
trait AccountObserver {
  val accountObserver: AccountObserver.Service[Any]
}

object AccountObserver {
  trait Service[R] {
    def processEvent(event: String): ZIO[R, Nothing, Unit]
  }
}

命令mill root.compile编译项目

//{
//  abstract trait AccountObserver extends scala.AnyRef {
//    val accountObserver: AccountObserver.Service[Any]
//  };
//  object AccountObserver extends scala.AnyRef {
//    def <init>() = {
//      super.<init>();
//      ()
//    };
//    abstract trait Service[R] extends scala.AnyRef {
//      def processEvent(event: String): ZIO[R, Nothing, Unit]
//    };
//    object Service extends scala.AnyRef {
//      def <init>() = {
//        super.<init>();
//        ()
//      };
//      case object processEvent extends _root_.zio.test.mock.Method[String, Unit] with scala.Product with scala.Serializable {
//        def <init>() = {
//          super.<init>();
//          ()
//        }
//      }
//    };
//    implicit val mockable: _root_.zio.test.mock.Mockable[AccountObserver] = ((mock: _root_.zio.test.mock.Mock) => {
//      final class $anon extends AccountObserver {
//        def <init>() = {
//          super.<init>();
//          ()
//        };
//        val accountObserver = {
//          final class $anon extends Service[Any] {
//            def <init>() = {
//              super.<init>();
//              ()
//            };
//            def processEvent(event: String): _root_.zio.IO[Nothing, Unit] = mock(Service.processEvent, event)
//          };
//          new $anon()
//        }
//      };
//      new $anon()
//    });
//    object $greater extends Service[AccountObserver] {
//      def <init>() = {
//        super.<init>();
//        ()
//      };
//      def processEvent(event: String): _root_.zio.IO[Nothing, Unit] = _root_.zio.ZIO.accessM(<empty> match {
//        case (env @ (_: AccountObserver)) => env.accountObserver.processEvent(event)
//      })
//    }
//  };
//  ()
//}

创建IntelliJ文件

mill mill.scalalib.GenIdea/idea

,然后打开在IntelliJ中的项目(请勿导入它)。

现在Ctrl + Shift + F9可以编译项目(与上面类似)。

例如,您可以使用对对象AccountObserver.Service的引用(此对象进行编译)。 IntelliJ当然可以用红色突出显示Service,但这没关系。

答案 1 :(得分:1)

更新:此答案不能解决问题。


这是米尔0.5.2及更早版本的IntelliJ IDEA项目生成器中的错误。自ucinewgame setoption name threads value 2 position fen rnbqkbnr/pppppppp/8/8/8/8/PPPPPPPP/RNBQKBNR w KQkq - go depth 20 起的Mill版本将包含针对该特定问题的修复程序。 (供参考:#729#728

要变通解决:在项目中添加一个0.5.2-9-ea4f04文件,其中包含该版本号(当然,或者更新的版本),然后重新运行IDEA项目生成器。

.mill-version