什么是typeof关键字

时间:2017-07-07 00:33:27

标签: kotlin keyword

我无法在Kotlin文档中找到它的含义,也无法通过Google搜索。它确实存在,但IntelliJ将其作为关键字Kotlin's autogenerated keyword list file contains it too突出显示。我试图弄清楚自己的作用,但我得到的唯一结果是IntelliJ告诉我Unexpected tokens (use ';' to separate expressions on the same line)

它是什么,它起作用了什么?

1 个答案:

答案 0 :(得分:3)

https://github.com/JetBrains/kotlin/blob/master/compiler/frontend/src/org/jetbrains/kotlin/lexer/KtTokens.java

查看Kotlin中的关键字列表
// Reserved for future use: KtKeywordToken TYPEOF_KEYWORD =
KtKeywordToken.keyword("typeof");

所以这个目前没有使用,但可能会在将来使用