Learn R Programming

cleanr (version 1.1.3)

get_function_body: get the body of a function

Description

body reformats the code (see Examples and Details).

Usage

get_function_body(object)

Arguments

object
The function from which to extract the body. Should have been sourced with keep.source = TRUE.

Value

[character(n)] the function body's lines.

Details

If we want to check a function as it is coded in a file, we need to get the original thing as coded in the file, no optimized version. In sys.source and source, keep.source = FALSE seems to use body. So we have to do it all over after sourcing with keep.source = TRUE (in check_functions_in_file).

Examples

Run this code
source(system.file("source", "R", "utils.R", package = "cleanr"))
require(checkmate)
cleanr:::get_function_body(set_cleanr_options)[3:6]
utils::capture.output(body(set_cleanr_options))[4:6]

Run the code above in your browser using DataLab