我正在尝试在我的本地机器上玩Kotlin HTML builder example。
在
abstract class Tag(val name: String) : Element {
val children = arrayListOf<Element>()
val attributes = hashMapOf<String, String>()
IntelliJ的想法咆哮arrayListOf
和hashMapOf
尚未解决。
导入kotlin.collections
(import kotlin.collections.*
),其中arrayListOf已定义,但没有帮助。
如何修复这些错误?
答案 0 :(得分:4)
确保使用最新的1.0 kotlin插件和1.0运行时。在此之后,IJ缓存无效并重新启动IJ可能是一个好主意。