arrayListOf和hashMapOf:未解析的引用

时间:2016-02-26 05:27:56

标签: intellij-idea kotlin

我正在尝试在我的本地机器上玩Kotlin HTML builder example

abstract class Tag(val name: String) : Element {
    val children = arrayListOf<Element>()
    val attributes = hashMapOf<String, String>()

IntelliJ的想法咆哮arrayListOfhashMapOf尚未解决。

Screenshot

导入kotlin.collectionsimport kotlin.collections.*),其中arrayListOf已定义,但没有帮助。

如何修复这些错误?

1 个答案:

答案 0 :(得分:4)

确保使用最新的1.0 kotlin插件和1.0运行时。在此之后,IJ缓存无效并重新启动IJ可能是一个好主意。