Show the fully merged code tree(s)

show_fullyMergedCodeTrees(x)

Arguments

x

A parsed source(s) object.

Value

The result of a call to DiagrammeR::render_graph().

Examples

### Get path to example source
examplePath <-
  system.file("extdata", package="rock");

### Get a path to one example file
exampleFile <-
  file.path(examplePath, "example-1.rock");

### Load example source
loadedExample <- rock::parse_source(exampleFile);

### Show merged code tree
show_fullyMergedCodeTrees(loadedExample);