Skip to content

Commit 3c40836

Browse files
remove remaining instance of function
1 parent 969b5e1 commit 3c40836

File tree

1 file changed

+3
-6
lines changed

1 file changed

+3
-6
lines changed

R/nest.R

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,10 @@ compute_parse_data_nested <- function(text,
2121
parse_data$child <- rep(list(NULL), length(parse_data$text))
2222
pd_nested <- parse_data %>%
2323
nest_parse_data() %>%
24-
flatten_operators()
24+
flatten_operators() %>%
25+
add_cache_block()
2526

26-
if (any(parse_data$token == "EQ_ASSIGN")) {
27-
pd_nested <- relocate_eq_assign(pd_nested)
28-
}
29-
30-
pd_nested %>% add_cache_block()
27+
pd_nested
3128
}
3229

3330
#' Creates a flat parse table with minimal initialization

0 commit comments

Comments
 (0)