Skip to content

Commit ac6075d

Browse files
committed
Adds imports for := rlang syntax
1 parent f758cdb commit ac6075d

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

NAMESPACE

+2
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,7 @@ importFrom(dplyr,left_join)
8181
importFrom(dplyr,matches)
8282
importFrom(dplyr,mutate)
8383
importFrom(dplyr,mutate_at)
84+
importFrom(dplyr,rename)
8485
importFrom(dplyr,select)
8586
importFrom(methods,addNextMethod)
8687
importFrom(methods,cacheMethod)
@@ -92,6 +93,7 @@ importFrom(methods,packageSlot)
9293
importFrom(methods,selectMethod)
9394
importFrom(plyr,arrange)
9495
importFrom(plyr,compact)
96+
importFrom(rlang,":=")
9597
importFrom(stats,na.omit)
9698
importFrom(stats,setNames)
9799
importFrom(stringi,stri_match_first_regex)

R/get_level.R

+3
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,7 @@ recursion <- function(i, level){
6161

6262
## Assumes slot(node, element) is a list
6363
#' @importFrom dplyr bind_rows coalesce mutate %>%
64+
#' @importFrom rlang :=
6465
#' @importFrom uuid UUIDgenerate
6566
nodelist_to_df <- function(node, element, fn, nodeId=NA){
6667
idRefCol <- idRefColName(node)
@@ -108,6 +109,8 @@ idRefColName <- function(node){
108109
clname
109110
}
110111

112+
#' @importFrom rlang :=
113+
#' @importFrom dplyr rename
111114
attributes_to_row <- function(node){
112115
who <- slotNames(node)
113116

0 commit comments

Comments
 (0)