* using log directory 'd:/Rcompile/CRANpkg/local/3.6/typed.Rcheck' * using R version 3.6.3 (2020-02-29) * using platform: x86_64-w64-mingw32 (64-bit) * using session charset: ISO8859-1 * checking for file 'typed/DESCRIPTION' ... OK * this is package 'typed' version '0.0.1' * package encoding: UTF-8 * checking package namespace information ... OK * checking package dependencies ... OK * checking if this is a source package ... OK * checking if there is a namespace ... OK * checking for hidden files and directories ... OK * checking for portable file names ... OK * checking whether package 'typed' can be installed ... OK * checking installed package size ... OK * checking package directory ... OK * checking DESCRIPTION meta-information ... OK * checking top-level files ... OK * checking for left-over files ... OK * checking index information ... OK * checking package subdirectories ... OK * checking R files for non-ASCII characters ... OK * checking R files for syntax errors ... OK * checking whether the package can be loaded ... OK * checking whether the package can be loaded with stated dependencies ... OK * checking whether the package can be unloaded cleanly ... OK * checking whether the namespace can be loaded with stated dependencies ... OK * checking whether the namespace can be unloaded cleanly ... OK * checking loading without being on the library search path ... OK * checking use of S3 registration ... OK * checking dependencies in R code ... OK * checking S3 generic/method consistency ... OK * checking replacement functions ... OK * checking foreign function calls ... OK * checking R code for possible problems ... [5s] NOTE check_arg: no visible global function definition for 'deparse1' check_output: no visible global function definition for 'deparse1' declare: no visible global function definition for 'deparse1' get_assertion: no visible global function definition for 'activeBindingFunction' print.typed: no visible global function definition for 'deparse1' process_assertion_factory_dots: no visible global function definition for 'deparse1' Undefined global functions or variables: activeBindingFunction deparse1 * checking Rd files ... OK * checking Rd metadata ... OK * checking Rd cross-references ... OK * checking for missing documentation entries ... OK * checking for code/documentation mismatches ... OK * checking Rd \usage sections ... OK * checking Rd contents ... OK * checking for unstated dependencies in examples ... OK * checking examples ... ERROR Running examples in 'typed-Ex.R' failed The error most likely occurred in: > ### Name: ? > ### Title: Set Variable Types, Argument Types and Return Types. > ### Aliases: ? declare > > ### ** Examples > > Integer() ? function (x= ? Integer()) { + Integer() ? y <- 2L + res <- x + y + res + } # typed function function (x) { check_arg(x, Integer()) declare("y", Integer(), value = 2L) res <- x + y check_output(res, Integer()) } Error in deparse1(attr(x, "return_type")) : could not find function "deparse1" Calls: -> print.typed -> writeLines -> paste0 Execution halted * checking for unstated dependencies in 'tests' ... OK * checking tests ... [5s] ERROR Running 'testthat.R' [5s] Running the tests in 'tests/testthat.R' failed. Complete output: > library(testthat) > library(typed) Attaching package: 'typed' The following object is masked from 'package:utils': ? > > test_check("typed") # typed function function () { } # typed function function (x) { check_output(check_arg(x, Double()), Double()) } == Failed tests ================================================================ -- Error (test-others.R:12:3): as_assertion_factory works ---------------------- Error: could not find function "deparse1" Backtrace: x 1. +-testthat::expect_equal(Numeric(~. == 1)(1), 1) test-others.R:12:2 2. | \-testthat::quasi_label(enquo(object), label, arg = "object") 3. | \-rlang::eval_bare(expr, quo_get_env(quo)) 4. \-typed:::Numeric(~. == 1) 5. \-typed::process_assertion_factory_dots(...) -- Error (test-others.R:29:3): printing works ---------------------------------- Error: could not find function "deparse1" Backtrace: x 1. +-testthat::expect_equal(print(fun2), fun2) test-others.R:29:2 2. | \-testthat::quasi_label(enquo(object), label, arg = "object") 3. | \-rlang::eval_bare(expr, quo_get_env(quo)) 4. +-base::print(fun2) 5. \-typed:::print.typed(fun2) 6. +-base::writeLines(...) 7. \-base::paste0("# Return type: ", deparse1(attr(x, "return_type"))) -- Error (test-qm.R:8:3): question mark works ---------------------------------- Error: invalid (NULL) left side of assignment Backtrace: x 1. \-testthat::expect_equal((`?`(Double(), x) = 1), 1) test-qm.R:8:2 2. \-testthat::quasi_label(enquo(object), label, arg = "object") 3. \-rlang::eval_bare(expr, quo_get_env(quo)) [ FAIL 3 | WARN 0 | SKIP 0 | PASS 172 ] Error: Test failures Execution halted * checking PDF version of manual ... OK * DONE Status: 2 ERRORs, 1 NOTE