-
-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
closes insightsengineering/teal#1474 Problem happens when two or more symbols occur in the same time on rhs and lhs. Due to this, `l` depends on `class` and `class` depends on `l`. ```r code <- "l <- list(a = 1, b = 2) class(l) <- c('new class', class(l))" # l depends on class and class depends on l q <- eval_code(qenv(), code) get_code(q, names = "l") ``` @donyunardi This was a serious bug and will require a new release. We can wait a little to the day when `teal` is going to be submitted to CRAN. --------- Signed-off-by: Dawid Kałędkowski <dawid.kaledkowski@gmail.com> Co-authored-by: Aleksander Chlebowski <114988527+chlebowa@users.noreply.github.com>
- Loading branch information
Showing
3 changed files
with
21 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters