parse_code {admiraldev}R Documentation

Parse Code

Description

The function parses the code and returns a list of expressions and source references.

Usage

parse_code(code)

Arguments

code

The code to parse

Permitted values

A character vector

Default value

none

Value

A list of expressions and source references

Each item of the list is a list with the following elements:

Examples

parse_code("1+1\n2*2")

parse_code(c("# sum:", "sum(\n  1, #first\n  2\n)"))

[Package admiraldev version 1.3.1 Index]