├── .Rbuildignore ├── .Rinstignore ├── .github ├── .gitignore ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ ├── R-CMD-check.yaml │ ├── future-revdepcheck-top.yaml │ ├── future_tests.yaml │ ├── pkgdown.yaml │ ├── rhub.yaml │ └── test-coverage.yaml ├── .gitignore ├── .make └── Makefile ├── CONDUCT.md ├── CONTRIBUTING.md ├── DESCRIPTION ├── Makefile ├── NAMESPACE ├── NEWS.md ├── R ├── Globals-class.R ├── call_find_globals_with_dotdotdot.R ├── cleanup.R ├── environment_of.R ├── findGlobals.R ├── findGlobalsDFS.R ├── find_globals_conservative.R ├── find_globals_liberal.R ├── find_globals_ordered.R ├── globalsByName.R ├── globalsOf.R ├── options.R ├── packagesOf.R ├── testme.R ├── utils,codetools-bugfix.R ├── utils,conditions.R ├── utils-debug.R ├── utils.R ├── walkAST.R ├── where.R └── zzz.R ├── README.md ├── cran-comments.md ├── incl ├── globalsByName.R └── globalsOf.R ├── inst ├── WORDLIST └── testme │ ├── _epilogue │ ├── 002.undo-state.R │ ├── 090.gc.R │ ├── 099.session_info.R │ ├── 995.detritus-connections.R │ └── 999.detritus-files.R │ ├── _prologue │ ├── 001.load.R │ ├── 005.globals.R │ ├── 010.record-state.R │ ├── 030.imports.R │ ├── 050.utils.R │ ├── 090.context.R │ ├── 090.options.R │ ├── 091.envvars.R │ └── 995.detrius-connections.R │ ├── deploy.R │ ├── run.R │ ├── test-Globals.R │ ├── test-cleanup.R │ ├── test-codetools-bug16.R │ ├── test-conservative.R │ ├── test-dotdotdot.R │ ├── test-findGlobals,dfs.R │ ├── test-findGlobals.R │ ├── test-formulas.R │ ├── test-globalsByName.R │ ├── test-globalsOf,locals.R │ ├── test-globalsOf.R │ ├── test-liberal.R │ ├── test-utils.R │ ├── test-walkAST.R │ └── test-zzz.R ├── man ├── Globals.Rd ├── cleanup.Globals.Rd ├── globalsByName.Rd ├── globalsOf.Rd ├── packagesOf.Globals.Rd ├── private_length.Rd └── walkAST.Rd ├── pkgdown ├── _pkgdown.yml ├── _pkgdown.yml.rsp └── favicon │ ├── apple-touch-icon-120x120.png │ ├── apple-touch-icon-60x60.png │ ├── apple-touch-icon-76x76.png │ ├── apple-touch-icon.png │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ └── favicon.ico ├── revdep ├── DESCRIPTION ├── NOT_CRAN │ ├── README.md │ ├── cran.md │ ├── failures.md │ └── problems.md ├── README.md ├── cran.md ├── failures.md ├── problems.md ├── revdepcheck.Renviron ├── run.R ├── run.pbs └── run.sge └── tests ├── test-Globals.R ├── test-cleanup.R ├── test-codetools-bug16.R ├── test-conservative.R ├── test-dotdotdot.R ├── test-findGlobals,dfs.R ├── test-findGlobals.R ├── test-formulas.R ├── test-globalsByName.R ├── test-globalsOf,locals.R ├── test-globalsOf.R ├── test-liberal.R ├── test-utils.R ├── test-walkAST.R └── test-zzz.R /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/globals/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.Rinstignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/globals/HEAD/.Rinstignore -------------------------------------------------------------------------------- /.github/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/globals/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/globals/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/R-CMD-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/globals/HEAD/.github/workflows/R-CMD-check.yaml -------------------------------------------------------------------------------- /.github/workflows/future-revdepcheck-top.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/globals/HEAD/.github/workflows/future-revdepcheck-top.yaml -------------------------------------------------------------------------------- /.github/workflows/future_tests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/globals/HEAD/.github/workflows/future_tests.yaml -------------------------------------------------------------------------------- /.github/workflows/pkgdown.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/globals/HEAD/.github/workflows/pkgdown.yaml -------------------------------------------------------------------------------- /.github/workflows/rhub.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/globals/HEAD/.github/workflows/rhub.yaml -------------------------------------------------------------------------------- /.github/workflows/test-coverage.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/globals/HEAD/.github/workflows/test-coverage.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/globals/HEAD/.gitignore -------------------------------------------------------------------------------- /.make/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/globals/HEAD/.make/Makefile -------------------------------------------------------------------------------- /CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/globals/HEAD/CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/globals/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/globals/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/globals/HEAD/Makefile -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/globals/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/globals/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/Globals-class.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/globals/HEAD/R/Globals-class.R -------------------------------------------------------------------------------- /R/call_find_globals_with_dotdotdot.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/globals/HEAD/R/call_find_globals_with_dotdotdot.R -------------------------------------------------------------------------------- /R/cleanup.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/globals/HEAD/R/cleanup.R -------------------------------------------------------------------------------- /R/environment_of.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/globals/HEAD/R/environment_of.R -------------------------------------------------------------------------------- /R/findGlobals.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/globals/HEAD/R/findGlobals.R -------------------------------------------------------------------------------- /R/findGlobalsDFS.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/globals/HEAD/R/findGlobalsDFS.R -------------------------------------------------------------------------------- /R/find_globals_conservative.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/globals/HEAD/R/find_globals_conservative.R -------------------------------------------------------------------------------- /R/find_globals_liberal.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/globals/HEAD/R/find_globals_liberal.R -------------------------------------------------------------------------------- /R/find_globals_ordered.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/globals/HEAD/R/find_globals_ordered.R -------------------------------------------------------------------------------- /R/globalsByName.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/globals/HEAD/R/globalsByName.R -------------------------------------------------------------------------------- /R/globalsOf.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/globals/HEAD/R/globalsOf.R -------------------------------------------------------------------------------- /R/options.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/globals/HEAD/R/options.R -------------------------------------------------------------------------------- /R/packagesOf.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/globals/HEAD/R/packagesOf.R -------------------------------------------------------------------------------- /R/testme.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/globals/HEAD/R/testme.R -------------------------------------------------------------------------------- /R/utils,codetools-bugfix.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/globals/HEAD/R/utils,codetools-bugfix.R -------------------------------------------------------------------------------- /R/utils,conditions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/globals/HEAD/R/utils,conditions.R -------------------------------------------------------------------------------- /R/utils-debug.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/globals/HEAD/R/utils-debug.R -------------------------------------------------------------------------------- /R/utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/globals/HEAD/R/utils.R -------------------------------------------------------------------------------- /R/walkAST.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/globals/HEAD/R/walkAST.R -------------------------------------------------------------------------------- /R/where.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/globals/HEAD/R/where.R -------------------------------------------------------------------------------- /R/zzz.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/globals/HEAD/R/zzz.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/globals/HEAD/README.md -------------------------------------------------------------------------------- /cran-comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/globals/HEAD/cran-comments.md -------------------------------------------------------------------------------- /incl/globalsByName.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/globals/HEAD/incl/globalsByName.R -------------------------------------------------------------------------------- /incl/globalsOf.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/globals/HEAD/incl/globalsOf.R -------------------------------------------------------------------------------- /inst/WORDLIST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/globals/HEAD/inst/WORDLIST -------------------------------------------------------------------------------- /inst/testme/_epilogue/002.undo-state.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/globals/HEAD/inst/testme/_epilogue/002.undo-state.R -------------------------------------------------------------------------------- /inst/testme/_epilogue/090.gc.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/globals/HEAD/inst/testme/_epilogue/090.gc.R -------------------------------------------------------------------------------- /inst/testme/_epilogue/099.session_info.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/globals/HEAD/inst/testme/_epilogue/099.session_info.R -------------------------------------------------------------------------------- /inst/testme/_epilogue/995.detritus-connections.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/globals/HEAD/inst/testme/_epilogue/995.detritus-connections.R -------------------------------------------------------------------------------- /inst/testme/_epilogue/999.detritus-files.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/globals/HEAD/inst/testme/_epilogue/999.detritus-files.R -------------------------------------------------------------------------------- /inst/testme/_prologue/001.load.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/globals/HEAD/inst/testme/_prologue/001.load.R -------------------------------------------------------------------------------- /inst/testme/_prologue/005.globals.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/globals/HEAD/inst/testme/_prologue/005.globals.R -------------------------------------------------------------------------------- /inst/testme/_prologue/010.record-state.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/globals/HEAD/inst/testme/_prologue/010.record-state.R -------------------------------------------------------------------------------- /inst/testme/_prologue/030.imports.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/globals/HEAD/inst/testme/_prologue/030.imports.R -------------------------------------------------------------------------------- /inst/testme/_prologue/050.utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/globals/HEAD/inst/testme/_prologue/050.utils.R -------------------------------------------------------------------------------- /inst/testme/_prologue/090.context.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/globals/HEAD/inst/testme/_prologue/090.context.R -------------------------------------------------------------------------------- /inst/testme/_prologue/090.options.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/globals/HEAD/inst/testme/_prologue/090.options.R -------------------------------------------------------------------------------- /inst/testme/_prologue/091.envvars.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/globals/HEAD/inst/testme/_prologue/091.envvars.R -------------------------------------------------------------------------------- /inst/testme/_prologue/995.detrius-connections.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/globals/HEAD/inst/testme/_prologue/995.detrius-connections.R -------------------------------------------------------------------------------- /inst/testme/deploy.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/globals/HEAD/inst/testme/deploy.R -------------------------------------------------------------------------------- /inst/testme/run.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/globals/HEAD/inst/testme/run.R -------------------------------------------------------------------------------- /inst/testme/test-Globals.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/globals/HEAD/inst/testme/test-Globals.R -------------------------------------------------------------------------------- /inst/testme/test-cleanup.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/globals/HEAD/inst/testme/test-cleanup.R -------------------------------------------------------------------------------- /inst/testme/test-codetools-bug16.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/globals/HEAD/inst/testme/test-codetools-bug16.R -------------------------------------------------------------------------------- /inst/testme/test-conservative.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/globals/HEAD/inst/testme/test-conservative.R -------------------------------------------------------------------------------- /inst/testme/test-dotdotdot.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/globals/HEAD/inst/testme/test-dotdotdot.R -------------------------------------------------------------------------------- /inst/testme/test-findGlobals,dfs.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/globals/HEAD/inst/testme/test-findGlobals,dfs.R -------------------------------------------------------------------------------- /inst/testme/test-findGlobals.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/globals/HEAD/inst/testme/test-findGlobals.R -------------------------------------------------------------------------------- /inst/testme/test-formulas.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/globals/HEAD/inst/testme/test-formulas.R -------------------------------------------------------------------------------- /inst/testme/test-globalsByName.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/globals/HEAD/inst/testme/test-globalsByName.R -------------------------------------------------------------------------------- /inst/testme/test-globalsOf,locals.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/globals/HEAD/inst/testme/test-globalsOf,locals.R -------------------------------------------------------------------------------- /inst/testme/test-globalsOf.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/globals/HEAD/inst/testme/test-globalsOf.R -------------------------------------------------------------------------------- /inst/testme/test-liberal.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/globals/HEAD/inst/testme/test-liberal.R -------------------------------------------------------------------------------- /inst/testme/test-utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/globals/HEAD/inst/testme/test-utils.R -------------------------------------------------------------------------------- /inst/testme/test-walkAST.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/globals/HEAD/inst/testme/test-walkAST.R -------------------------------------------------------------------------------- /inst/testme/test-zzz.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/globals/HEAD/inst/testme/test-zzz.R -------------------------------------------------------------------------------- /man/Globals.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/globals/HEAD/man/Globals.Rd -------------------------------------------------------------------------------- /man/cleanup.Globals.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/globals/HEAD/man/cleanup.Globals.Rd -------------------------------------------------------------------------------- /man/globalsByName.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/globals/HEAD/man/globalsByName.Rd -------------------------------------------------------------------------------- /man/globalsOf.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/globals/HEAD/man/globalsOf.Rd -------------------------------------------------------------------------------- /man/packagesOf.Globals.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/globals/HEAD/man/packagesOf.Globals.Rd -------------------------------------------------------------------------------- /man/private_length.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/globals/HEAD/man/private_length.Rd -------------------------------------------------------------------------------- /man/walkAST.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/globals/HEAD/man/walkAST.Rd -------------------------------------------------------------------------------- /pkgdown/_pkgdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/globals/HEAD/pkgdown/_pkgdown.yml -------------------------------------------------------------------------------- /pkgdown/_pkgdown.yml.rsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/globals/HEAD/pkgdown/_pkgdown.yml.rsp -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/globals/HEAD/pkgdown/favicon/apple-touch-icon-120x120.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/globals/HEAD/pkgdown/favicon/apple-touch-icon-60x60.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/globals/HEAD/pkgdown/favicon/apple-touch-icon-76x76.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/globals/HEAD/pkgdown/favicon/apple-touch-icon.png -------------------------------------------------------------------------------- /pkgdown/favicon/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/globals/HEAD/pkgdown/favicon/favicon-16x16.png -------------------------------------------------------------------------------- /pkgdown/favicon/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/globals/HEAD/pkgdown/favicon/favicon-32x32.png -------------------------------------------------------------------------------- /pkgdown/favicon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/globals/HEAD/pkgdown/favicon/favicon.ico -------------------------------------------------------------------------------- /revdep/DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/globals/HEAD/revdep/DESCRIPTION -------------------------------------------------------------------------------- /revdep/NOT_CRAN/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/globals/HEAD/revdep/NOT_CRAN/README.md -------------------------------------------------------------------------------- /revdep/NOT_CRAN/cran.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/globals/HEAD/revdep/NOT_CRAN/cran.md -------------------------------------------------------------------------------- /revdep/NOT_CRAN/failures.md: -------------------------------------------------------------------------------- 1 | *Wow, no problems at all. :)* -------------------------------------------------------------------------------- /revdep/NOT_CRAN/problems.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/globals/HEAD/revdep/NOT_CRAN/problems.md -------------------------------------------------------------------------------- /revdep/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/globals/HEAD/revdep/README.md -------------------------------------------------------------------------------- /revdep/cran.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/globals/HEAD/revdep/cran.md -------------------------------------------------------------------------------- /revdep/failures.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/globals/HEAD/revdep/failures.md -------------------------------------------------------------------------------- /revdep/problems.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/globals/HEAD/revdep/problems.md -------------------------------------------------------------------------------- /revdep/revdepcheck.Renviron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/globals/HEAD/revdep/revdepcheck.Renviron -------------------------------------------------------------------------------- /revdep/run.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/globals/HEAD/revdep/run.R -------------------------------------------------------------------------------- /revdep/run.pbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/globals/HEAD/revdep/run.pbs -------------------------------------------------------------------------------- /revdep/run.sge: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/globals/HEAD/revdep/run.sge -------------------------------------------------------------------------------- /tests/test-Globals.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/globals/HEAD/tests/test-Globals.R -------------------------------------------------------------------------------- /tests/test-cleanup.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/globals/HEAD/tests/test-cleanup.R -------------------------------------------------------------------------------- /tests/test-codetools-bug16.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/globals/HEAD/tests/test-codetools-bug16.R -------------------------------------------------------------------------------- /tests/test-conservative.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/globals/HEAD/tests/test-conservative.R -------------------------------------------------------------------------------- /tests/test-dotdotdot.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/globals/HEAD/tests/test-dotdotdot.R -------------------------------------------------------------------------------- /tests/test-findGlobals,dfs.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/globals/HEAD/tests/test-findGlobals,dfs.R -------------------------------------------------------------------------------- /tests/test-findGlobals.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/globals/HEAD/tests/test-findGlobals.R -------------------------------------------------------------------------------- /tests/test-formulas.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/globals/HEAD/tests/test-formulas.R -------------------------------------------------------------------------------- /tests/test-globalsByName.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/globals/HEAD/tests/test-globalsByName.R -------------------------------------------------------------------------------- /tests/test-globalsOf,locals.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/globals/HEAD/tests/test-globalsOf,locals.R -------------------------------------------------------------------------------- /tests/test-globalsOf.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/globals/HEAD/tests/test-globalsOf.R -------------------------------------------------------------------------------- /tests/test-liberal.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/globals/HEAD/tests/test-liberal.R -------------------------------------------------------------------------------- /tests/test-utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/globals/HEAD/tests/test-utils.R -------------------------------------------------------------------------------- /tests/test-walkAST.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/globals/HEAD/tests/test-walkAST.R -------------------------------------------------------------------------------- /tests/test-zzz.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futureverse/globals/HEAD/tests/test-zzz.R --------------------------------------------------------------------------------