===========================================================
                                      .___ __  __   
          _________________  __ __  __| _/|__|/  |_ 
         / ___\_` __ \__  \ |  |  \/ __ | | \\_  __\
        / /_/  >  | \// __ \|  |  / /_/ | |  ||  |  
        \___  /|__|  (____  /____/\____ | |__||__|  
       /_____/            \/           \/           
              grep rough audit - static analysis tool
                  v2.8 written by @Wireghoul
=================================[justanotherhacker.com]===
r-cran-pkgmaker-0.32.2/tests/testthat/test-utils.r-57-		y <- ExposeAttribute(x, ...)
r-cran-pkgmaker-0.32.2/tests/testthat/test-utils.r:58:		eval(parse(text=str_c('y$', name, ' <- 1')))
r-cran-pkgmaker-0.32.2/tests/testthat/test-utils.r-59-		attr_mode(y) <- NULL 
##############################################
r-cran-pkgmaker-0.32.2/tests/testthat/test-utils.r-63-		y <- ExposeAttribute(x, ...)
r-cran-pkgmaker-0.32.2/tests/testthat/test-utils.r:64:		expect_error(eval(parse(text=str_c('y$', name, ' <- 1'))), regexp, info = msg)
r-cran-pkgmaker-0.32.2/tests/testthat/test-utils.r-65-	}
##############################################
r-cran-pkgmaker-0.32.2/tests/testthat/test-utils.r-79-		y <- ExposeAttribute(x, ...)
r-cran-pkgmaker-0.32.2/tests/testthat/test-utils.r:80:		a <- eval(parse(text=str_c('y$', name)))
r-cran-pkgmaker-0.32.2/tests/testthat/test-utils.r-81-		expect_identical(attr(x, name), a, msg)
##############################################
r-cran-pkgmaker-0.32.2/tests/testthat/test-utils.r-85-		y <- ExposeAttribute(x, ...)
r-cran-pkgmaker-0.32.2/tests/testthat/test-utils.r:86:		expect_error(eval(parse(text=str_c('y$', name))), regexp, info = msg)
r-cran-pkgmaker-0.32.2/tests/testthat/test-utils.r-87-	}
##############################################
r-cran-pkgmaker-0.32.2/R/utils.R-850-#' @export
r-cran-pkgmaker-0.32.2/R/utils.R:851:`$.ExposeAttribute` <- function(x, name){
r-cran-pkgmaker-0.32.2/R/utils.R-852-	if( is.null(attr(x, name)) )
##############################################
r-cran-pkgmaker-0.32.2/R/utils.R-865-#' @export
r-cran-pkgmaker-0.32.2/R/utils.R:866:`$<-.ExposeAttribute` <- function(x, name, value){
r-cran-pkgmaker-0.32.2/R/utils.R-867-	mode <- .getEAmode(x, name)
r-cran-pkgmaker-0.32.2/R/utils.R-868-	if( !length(mode) ){
r-cran-pkgmaker-0.32.2/R/utils.R:869:		stop("Could not write attribute via `$<-`: attribute '", name, "' is not exposed. Use `attr(x, '", name, "') <- value.")
r-cran-pkgmaker-0.32.2/R/utils.R-870-	}
##############################################
r-cran-pkgmaker-0.32.2/R/packages.R-87-	# build
r-cran-pkgmaker-0.32.2/R/packages.R:88:	message("# Building package `", pkg$package, "` in '", getwd(), "'")
r-cran-pkgmaker-0.32.2/R/packages.R-89-	opts <- '--no-manual --no-resave-data '
##############################################
r-cran-pkgmaker-0.32.2/R/packages.R-95-	spkg <- paste(pkg$package, '_', pkg$version, '.tar.gz', sep='')
r-cran-pkgmaker-0.32.2/R/packages.R:96:	if( !file.exists(spkg) ) stop('Error in building package `', pkg$package,'`')
r-cran-pkgmaker-0.32.2/R/packages.R-97-	# install
r-cran-pkgmaker-0.32.2/R/packages.R:98:	message("# Installing package `", pkg$package, "`"
r-cran-pkgmaker-0.32.2/R/packages.R-99-          , if( !is.null(destdir) ){
##############################################
r-cran-pkgmaker-0.32.2/R/project.R-62-#'   * named element containing character strings: these are paths that are looked up only for packages that 
r-cran-pkgmaker-0.32.2/R/project.R:63:#' match the element name. If the element name contains any of the characters `*?()$^\\][`, then it is matched using 
r-cran-pkgmaker-0.32.2/R/project.R-64-#' regular expression.
##############################################
r-cran-pkgmaker-0.32.2/R/package.R-156-				taskObj$set(x, NULL)
r-cran-pkgmaker-0.32.2/R/package.R:157:				#eval(x$expr, x$envir)
r-cran-pkgmaker-0.32.2/R/package.R-158-			})
##############################################
r-cran-pkgmaker-0.32.2/inst/package.mk-89-	@echo -n "# R version: "
r-cran-pkgmaker-0.32.2/inst/package.mk:90:	@echo -n `$(RSCRIPT) --version`
r-cran-pkgmaker-0.32.2/inst/package.mk-91-	# R Platform: $(R_PACKAGE_OS)
##############################################
r-cran-pkgmaker-0.32.2/inst/package.mk-136-	@echo "\n*** STEP: DEPLOY (R-DEVEL)" && \
r-cran-pkgmaker-0.32.2/inst/package.mk:137:	echo `$(RSCRIPT_DEVEL) --version` && \
r-cran-pkgmaker-0.32.2/inst/package.mk-138-	$(RSCRIPT_DEVEL) -e "devtools::install('$(R_PACKAGE_PATH)', quick = $(QUICK_FLAG))" && \
##############################################
r-cran-pkgmaker-0.32.2/inst/package.mk-149-#	echo "\n*** STEP: BUILD-BINARIES\n" && \
r-cran-pkgmaker-0.32.2/inst/package.mk:150:#	`echo "$$CMD_BUILD_BINARIES" > build-bin.r` && \
r-cran-pkgmaker-0.32.2/inst/package.mk-151-#	$(RSCRIPT) --vanilla ./build-bin.r && \
##############################################
r-cran-pkgmaker-0.32.2/debian/tests/run-unit-test-6-if [ "$AUTOPKGTEST_TMP" = "" ] ; then
r-cran-pkgmaker-0.32.2/debian/tests/run-unit-test:7:    AUTOPKGTEST_TMP=`mktemp -d /tmp/${debname}-test.XXXXXX`
r-cran-pkgmaker-0.32.2/debian/tests/run-unit-test-8-    trap "rm -rf $AUTOPKGTEST_TMP" 0 INT QUIT ABRT PIPE TERM