question about intellij autocompletion: I just wro...
# intellij
w
question about intellij autocompletion: I just wrote the following code:
Copy code
object Parse {
    private var parseAppId: String? = null
    private var parseRestKey: String? = null
    private var parseMasterKey: String? = null
    fun initialize(parseAppId: String, parseRestKey: String, parseMasterKey: String) {
        this.parseAppId = parseAppId
        this.parseRestKey = parseRestKey
        this.parseMasterKey = parseMasterKey
    }
}

fun main(args: Array<String>) {
    Parse.initialize(/* trying to auto complete here */)
}