We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 969b5e1 commit 3c40836Copy full SHA for 3c40836
R/nest.R
@@ -21,13 +21,10 @@ compute_parse_data_nested <- function(text,
21
parse_data$child <- rep(list(NULL), length(parse_data$text))
22
pd_nested <- parse_data %>%
23
nest_parse_data() %>%
24
- flatten_operators()
+ flatten_operators() %>%
25
+ add_cache_block()
26
- if (any(parse_data$token == "EQ_ASSIGN")) {
27
- pd_nested <- relocate_eq_assign(pd_nested)
28
- }
29
-
30
- pd_nested %>% add_cache_block()
+ pd_nested
31
}
32
33
#' Creates a flat parse table with minimal initialization
0 commit comments