├── .Rbuildignore ├── .travis.yml ├── DESCRIPTION ├── Makefile ├── NAMESPACE ├── R ├── api.R ├── base.R ├── cran.R ├── data-frame.R ├── double_colon_calls.R ├── expressions.R ├── external.R ├── function-arguments.R ├── graphs.R ├── json.R ├── map.R ├── namespaces.R ├── parse-exprs.R ├── parseRfolder.R ├── parseRscript.R ├── parsedata.R ├── paths.R ├── print.R ├── s3.R ├── sankey.R ├── utils.R └── walk_lang.R ├── README.md ├── appveyor.yml ├── inst ├── README.Rmd └── README.md ├── man ├── add_namespaces.Rd ├── bfs.Rd ├── check_pkg_dir.Rd ├── common_prefix.Rd ├── create_function_map.Rd ├── data_frame.Rd ├── default_r_file_pattern.Rd ├── deps.Rd ├── drop_null.Rd ├── edge_data_frame.Rd ├── edge_df.Rd ├── export_map.Rd ├── external_calls.Rd ├── extract_if_needed.Rd ├── find_globals.Rd ├── find_globals_multiple.Rd ├── find_imports.Rd ├── find_in_named_list.Rd ├── func_arg_globals.Rd ├── func_from_expr.Rd ├── funcs_from_exprs.Rd ├── functions.Rd ├── functions_called.Rd ├── get_base_funcs.Rd ├── get_exports.Rd ├── get_funcs_from_r_script.Rd ├── get_global_calls.Rd ├── get_graph.Rd ├── get_imports.Rd ├── in_list.Rd ├── isolates.Rd ├── map_cran_package.Rd ├── map_r_folder.Rd ├── map_r_package.Rd ├── map_r_script.Rd ├── maybe_s3_method.Rd ├── myrep.Rd ├── node_data_frame.Rd ├── node_df.Rd ├── package_collate.Rd ├── package_name.Rd ├── parse_collate.Rd ├── parse_r_folder.Rd ├── parse_r_script.Rd ├── print.function_map.Rd ├── r_package_files.Rd ├── remove_base_functions.Rd ├── remove_loops.Rd ├── rev_deps.Rd ├── s3_calls.Rd ├── sankey_plot.Rd ├── str_trim.Rd ├── topo_sort.Rd ├── twist_graph.Rd ├── unused_functions.Rd └── where.Rd └── tests ├── testthat.R └── testthat ├── helper.R ├── test-api.R ├── test-cran.R ├── test-do.call.R ├── test-double-colon.R ├── test-external-calls.R ├── test-get-global-calls.R ├── test-graphs.R ├── test-maps.R ├── test-namespaces.R ├── test-parse-r-package.R ├── test-parse-r-script.R ├── test-parsing.R ├── test-r6.R ├── test-s3.R ├── test-utils.R ├── testCollate ├── DESCRIPTION ├── NAMESPACE └── R │ ├── aa-second.R │ └── xx-first.R ├── testEnv ├── DESCRIPTION ├── NAMESPACE └── R │ ├── first.R │ └── second.R ├── testdc ├── DESCRIPTION ├── NAMESPACE └── R │ └── dc.R ├── testfolder ├── first.R └── second.R ├── testns └── NAMESPACE ├── testpkg ├── DESCRIPTION ├── NAMESPACE └── R │ ├── first.R │ └── second.R └── testr6 ├── DESCRIPTION ├── NAMESPACE └── R └── code.R /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/functionMap/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/functionMap/HEAD/.travis.yml -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/functionMap/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/functionMap/HEAD/Makefile -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/functionMap/HEAD/NAMESPACE -------------------------------------------------------------------------------- /R/api.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/functionMap/HEAD/R/api.R -------------------------------------------------------------------------------- /R/base.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/functionMap/HEAD/R/base.R -------------------------------------------------------------------------------- /R/cran.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/functionMap/HEAD/R/cran.R -------------------------------------------------------------------------------- /R/data-frame.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/functionMap/HEAD/R/data-frame.R -------------------------------------------------------------------------------- /R/double_colon_calls.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/functionMap/HEAD/R/double_colon_calls.R -------------------------------------------------------------------------------- /R/expressions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/functionMap/HEAD/R/expressions.R -------------------------------------------------------------------------------- /R/external.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/functionMap/HEAD/R/external.R -------------------------------------------------------------------------------- /R/function-arguments.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/functionMap/HEAD/R/function-arguments.R -------------------------------------------------------------------------------- /R/graphs.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/functionMap/HEAD/R/graphs.R -------------------------------------------------------------------------------- /R/json.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/functionMap/HEAD/R/json.R -------------------------------------------------------------------------------- /R/map.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/functionMap/HEAD/R/map.R -------------------------------------------------------------------------------- /R/namespaces.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/functionMap/HEAD/R/namespaces.R -------------------------------------------------------------------------------- /R/parse-exprs.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/functionMap/HEAD/R/parse-exprs.R -------------------------------------------------------------------------------- /R/parseRfolder.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/functionMap/HEAD/R/parseRfolder.R -------------------------------------------------------------------------------- /R/parseRscript.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/functionMap/HEAD/R/parseRscript.R -------------------------------------------------------------------------------- /R/parsedata.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/functionMap/HEAD/R/parsedata.R -------------------------------------------------------------------------------- /R/paths.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/functionMap/HEAD/R/paths.R -------------------------------------------------------------------------------- /R/print.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/functionMap/HEAD/R/print.R -------------------------------------------------------------------------------- /R/s3.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/functionMap/HEAD/R/s3.R -------------------------------------------------------------------------------- /R/sankey.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/functionMap/HEAD/R/sankey.R -------------------------------------------------------------------------------- /R/utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/functionMap/HEAD/R/utils.R -------------------------------------------------------------------------------- /R/walk_lang.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/functionMap/HEAD/R/walk_lang.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | inst/README.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/functionMap/HEAD/appveyor.yml -------------------------------------------------------------------------------- /inst/README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/functionMap/HEAD/inst/README.Rmd -------------------------------------------------------------------------------- /inst/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/functionMap/HEAD/inst/README.md -------------------------------------------------------------------------------- /man/add_namespaces.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/functionMap/HEAD/man/add_namespaces.Rd -------------------------------------------------------------------------------- /man/bfs.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/functionMap/HEAD/man/bfs.Rd -------------------------------------------------------------------------------- /man/check_pkg_dir.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/functionMap/HEAD/man/check_pkg_dir.Rd -------------------------------------------------------------------------------- /man/common_prefix.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/functionMap/HEAD/man/common_prefix.Rd -------------------------------------------------------------------------------- /man/create_function_map.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/functionMap/HEAD/man/create_function_map.Rd -------------------------------------------------------------------------------- /man/data_frame.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/functionMap/HEAD/man/data_frame.Rd -------------------------------------------------------------------------------- /man/default_r_file_pattern.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/functionMap/HEAD/man/default_r_file_pattern.Rd -------------------------------------------------------------------------------- /man/deps.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/functionMap/HEAD/man/deps.Rd -------------------------------------------------------------------------------- /man/drop_null.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/functionMap/HEAD/man/drop_null.Rd -------------------------------------------------------------------------------- /man/edge_data_frame.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/functionMap/HEAD/man/edge_data_frame.Rd -------------------------------------------------------------------------------- /man/edge_df.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/functionMap/HEAD/man/edge_df.Rd -------------------------------------------------------------------------------- /man/export_map.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/functionMap/HEAD/man/export_map.Rd -------------------------------------------------------------------------------- /man/external_calls.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/functionMap/HEAD/man/external_calls.Rd -------------------------------------------------------------------------------- /man/extract_if_needed.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/functionMap/HEAD/man/extract_if_needed.Rd -------------------------------------------------------------------------------- /man/find_globals.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/functionMap/HEAD/man/find_globals.Rd -------------------------------------------------------------------------------- /man/find_globals_multiple.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/functionMap/HEAD/man/find_globals_multiple.Rd -------------------------------------------------------------------------------- /man/find_imports.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/functionMap/HEAD/man/find_imports.Rd -------------------------------------------------------------------------------- /man/find_in_named_list.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/functionMap/HEAD/man/find_in_named_list.Rd -------------------------------------------------------------------------------- /man/func_arg_globals.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/functionMap/HEAD/man/func_arg_globals.Rd -------------------------------------------------------------------------------- /man/func_from_expr.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/functionMap/HEAD/man/func_from_expr.Rd -------------------------------------------------------------------------------- /man/funcs_from_exprs.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/functionMap/HEAD/man/funcs_from_exprs.Rd -------------------------------------------------------------------------------- /man/functions.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/functionMap/HEAD/man/functions.Rd -------------------------------------------------------------------------------- /man/functions_called.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/functionMap/HEAD/man/functions_called.Rd -------------------------------------------------------------------------------- /man/get_base_funcs.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/functionMap/HEAD/man/get_base_funcs.Rd -------------------------------------------------------------------------------- /man/get_exports.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/functionMap/HEAD/man/get_exports.Rd -------------------------------------------------------------------------------- /man/get_funcs_from_r_script.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/functionMap/HEAD/man/get_funcs_from_r_script.Rd -------------------------------------------------------------------------------- /man/get_global_calls.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/functionMap/HEAD/man/get_global_calls.Rd -------------------------------------------------------------------------------- /man/get_graph.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/functionMap/HEAD/man/get_graph.Rd -------------------------------------------------------------------------------- /man/get_imports.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/functionMap/HEAD/man/get_imports.Rd -------------------------------------------------------------------------------- /man/in_list.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/functionMap/HEAD/man/in_list.Rd -------------------------------------------------------------------------------- /man/isolates.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/functionMap/HEAD/man/isolates.Rd -------------------------------------------------------------------------------- /man/map_cran_package.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/functionMap/HEAD/man/map_cran_package.Rd -------------------------------------------------------------------------------- /man/map_r_folder.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/functionMap/HEAD/man/map_r_folder.Rd -------------------------------------------------------------------------------- /man/map_r_package.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/functionMap/HEAD/man/map_r_package.Rd -------------------------------------------------------------------------------- /man/map_r_script.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/functionMap/HEAD/man/map_r_script.Rd -------------------------------------------------------------------------------- /man/maybe_s3_method.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/functionMap/HEAD/man/maybe_s3_method.Rd -------------------------------------------------------------------------------- /man/myrep.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/functionMap/HEAD/man/myrep.Rd -------------------------------------------------------------------------------- /man/node_data_frame.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/functionMap/HEAD/man/node_data_frame.Rd -------------------------------------------------------------------------------- /man/node_df.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/functionMap/HEAD/man/node_df.Rd -------------------------------------------------------------------------------- /man/package_collate.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/functionMap/HEAD/man/package_collate.Rd -------------------------------------------------------------------------------- /man/package_name.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/functionMap/HEAD/man/package_name.Rd -------------------------------------------------------------------------------- /man/parse_collate.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/functionMap/HEAD/man/parse_collate.Rd -------------------------------------------------------------------------------- /man/parse_r_folder.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/functionMap/HEAD/man/parse_r_folder.Rd -------------------------------------------------------------------------------- /man/parse_r_script.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/functionMap/HEAD/man/parse_r_script.Rd -------------------------------------------------------------------------------- /man/print.function_map.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/functionMap/HEAD/man/print.function_map.Rd -------------------------------------------------------------------------------- /man/r_package_files.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/functionMap/HEAD/man/r_package_files.Rd -------------------------------------------------------------------------------- /man/remove_base_functions.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/functionMap/HEAD/man/remove_base_functions.Rd -------------------------------------------------------------------------------- /man/remove_loops.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/functionMap/HEAD/man/remove_loops.Rd -------------------------------------------------------------------------------- /man/rev_deps.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/functionMap/HEAD/man/rev_deps.Rd -------------------------------------------------------------------------------- /man/s3_calls.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/functionMap/HEAD/man/s3_calls.Rd -------------------------------------------------------------------------------- /man/sankey_plot.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/functionMap/HEAD/man/sankey_plot.Rd -------------------------------------------------------------------------------- /man/str_trim.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/functionMap/HEAD/man/str_trim.Rd -------------------------------------------------------------------------------- /man/topo_sort.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/functionMap/HEAD/man/topo_sort.Rd -------------------------------------------------------------------------------- /man/twist_graph.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/functionMap/HEAD/man/twist_graph.Rd -------------------------------------------------------------------------------- /man/unused_functions.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/functionMap/HEAD/man/unused_functions.Rd -------------------------------------------------------------------------------- /man/where.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/functionMap/HEAD/man/where.Rd -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/functionMap/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/helper.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/functionMap/HEAD/tests/testthat/helper.R -------------------------------------------------------------------------------- /tests/testthat/test-api.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/functionMap/HEAD/tests/testthat/test-api.R -------------------------------------------------------------------------------- /tests/testthat/test-cran.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/functionMap/HEAD/tests/testthat/test-cran.R -------------------------------------------------------------------------------- /tests/testthat/test-do.call.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/functionMap/HEAD/tests/testthat/test-do.call.R -------------------------------------------------------------------------------- /tests/testthat/test-double-colon.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/functionMap/HEAD/tests/testthat/test-double-colon.R -------------------------------------------------------------------------------- /tests/testthat/test-external-calls.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/functionMap/HEAD/tests/testthat/test-external-calls.R -------------------------------------------------------------------------------- /tests/testthat/test-get-global-calls.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/functionMap/HEAD/tests/testthat/test-get-global-calls.R -------------------------------------------------------------------------------- /tests/testthat/test-graphs.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/functionMap/HEAD/tests/testthat/test-graphs.R -------------------------------------------------------------------------------- /tests/testthat/test-maps.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/functionMap/HEAD/tests/testthat/test-maps.R -------------------------------------------------------------------------------- /tests/testthat/test-namespaces.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/functionMap/HEAD/tests/testthat/test-namespaces.R -------------------------------------------------------------------------------- /tests/testthat/test-parse-r-package.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/functionMap/HEAD/tests/testthat/test-parse-r-package.R -------------------------------------------------------------------------------- /tests/testthat/test-parse-r-script.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/functionMap/HEAD/tests/testthat/test-parse-r-script.R -------------------------------------------------------------------------------- /tests/testthat/test-parsing.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/functionMap/HEAD/tests/testthat/test-parsing.R -------------------------------------------------------------------------------- /tests/testthat/test-r6.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/functionMap/HEAD/tests/testthat/test-r6.R -------------------------------------------------------------------------------- /tests/testthat/test-s3.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/functionMap/HEAD/tests/testthat/test-s3.R -------------------------------------------------------------------------------- /tests/testthat/test-utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/functionMap/HEAD/tests/testthat/test-utils.R -------------------------------------------------------------------------------- /tests/testthat/testCollate/DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/functionMap/HEAD/tests/testthat/testCollate/DESCRIPTION -------------------------------------------------------------------------------- /tests/testthat/testCollate/NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/functionMap/HEAD/tests/testthat/testCollate/NAMESPACE -------------------------------------------------------------------------------- /tests/testthat/testCollate/R/aa-second.R: -------------------------------------------------------------------------------- 1 | 2 | g <- f 3 | -------------------------------------------------------------------------------- /tests/testthat/testCollate/R/xx-first.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/functionMap/HEAD/tests/testthat/testCollate/R/xx-first.R -------------------------------------------------------------------------------- /tests/testthat/testEnv/DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/functionMap/HEAD/tests/testthat/testEnv/DESCRIPTION -------------------------------------------------------------------------------- /tests/testthat/testEnv/NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/functionMap/HEAD/tests/testthat/testEnv/NAMESPACE -------------------------------------------------------------------------------- /tests/testthat/testEnv/R/first.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/functionMap/HEAD/tests/testthat/testEnv/R/first.R -------------------------------------------------------------------------------- /tests/testthat/testEnv/R/second.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/functionMap/HEAD/tests/testthat/testEnv/R/second.R -------------------------------------------------------------------------------- /tests/testthat/testdc/DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/functionMap/HEAD/tests/testthat/testdc/DESCRIPTION -------------------------------------------------------------------------------- /tests/testthat/testdc/NAMESPACE: -------------------------------------------------------------------------------- 1 | export(f) 2 | -------------------------------------------------------------------------------- /tests/testthat/testdc/R/dc.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/functionMap/HEAD/tests/testthat/testdc/R/dc.R -------------------------------------------------------------------------------- /tests/testthat/testfolder/first.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/functionMap/HEAD/tests/testthat/testfolder/first.R -------------------------------------------------------------------------------- /tests/testthat/testfolder/second.R: -------------------------------------------------------------------------------- 1 | 2 | y <- function() { 3 | f() 4 | } 5 | -------------------------------------------------------------------------------- /tests/testthat/testns/NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/functionMap/HEAD/tests/testthat/testns/NAMESPACE -------------------------------------------------------------------------------- /tests/testthat/testpkg/DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/functionMap/HEAD/tests/testthat/testpkg/DESCRIPTION -------------------------------------------------------------------------------- /tests/testthat/testpkg/NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/functionMap/HEAD/tests/testthat/testpkg/NAMESPACE -------------------------------------------------------------------------------- /tests/testthat/testpkg/R/first.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/functionMap/HEAD/tests/testthat/testpkg/R/first.R -------------------------------------------------------------------------------- /tests/testthat/testpkg/R/second.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/functionMap/HEAD/tests/testthat/testpkg/R/second.R -------------------------------------------------------------------------------- /tests/testthat/testr6/DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/functionMap/HEAD/tests/testthat/testr6/DESCRIPTION -------------------------------------------------------------------------------- /tests/testthat/testr6/NAMESPACE: -------------------------------------------------------------------------------- 1 | importFrom(R6, R6Class) 2 | -------------------------------------------------------------------------------- /tests/testthat/testr6/R/code.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MangoTheCat/functionMap/HEAD/tests/testthat/testr6/R/code.R --------------------------------------------------------------------------------