psi/src/com/intellij/r/psi/psi/RDataTableAnalyzer.kt [45:54]: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - override fun transformNotCall(expr: RExpression, command: StringBuilder, runtimeInfo: RConsoleRuntimeInfo, preserveRows: Boolean) { if (isSafe(expr, runtimeInfo)) { if (!preserveRows) command.append("data.table:::`[.data.table`(") command.append("(").append(expr.text).append(")") if (!preserveRows) command.append(",FALSE)") } else { command.append("(data.table::data.table())") } } - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - psi/src/com/intellij/r/psi/psi/RDplyrAnalyzer.kt [43:52]: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - override fun transformNotCall(expr: RExpression, command: StringBuilder, runtimeInfo: RConsoleRuntimeInfo, preserveRows: Boolean) { if (isSafe(expr, runtimeInfo)) { if (!preserveRows) command.append("dplyr::filter(") command.append("(").append(expr.text).append(")") if (!preserveRows) command.append(",FALSE)") } else { command.append("(dplyr::tibble())") } } - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -