Package evaluation to test Helium on Julia 1.14.0-DEV.2226 (797a5ef2b0*) started at 2026-05-23T16:48:06.725 ################################################################################ # Set-up # Installing PkgEval dependencies (TestEnv)... Activating project at `~/.julia/environments/v1.14` Set-up completed after 16.85s ################################################################################ # Installation # Installing Helium... Resolving package versions... Installed DelimitedFiles ─ v1.9.1 Installed Helium ───────── v0.2.1 Updating `~/.julia/environments/v1.14/Project.toml` [3f79f04f] + Helium v0.2.1 Updating `~/.julia/environments/v1.14/Manifest.toml` [8bb1440f] + DelimitedFiles v1.9.1 [3f79f04f] + Helium v0.2.1 [a63ad114] + Mmap v1.11.0 Installation completed after 1.48s ################################################################################ # Precompilation # Precompiling PkgEval dependencies... Precompiling project... 5.5 s ✓ TestEnv 1 dependency successfully precompiled in 6 seconds. 27 already precompiled. Precompiling package dependencies... Precompiling project... 1.0 s ✓ ANSIColoredPrinters 0.8 s ✓ LazilyInitializedFields 1.1 s ✓ DocStringExtensions 85.6 s ✓ AbstractTrees 56.7 s ✓ TranscodingStreams 0.7 s ✓ IOCapture 0.8 s ✓ DelimitedFiles 2.6 s ✓ StructUtils 2.4 s ✓ Preferences 6.5 s ✓ RegistryInstances 23.6 s ✓ MarkdownAST 21.2 s ✓ CodecZlib ┌ Info: JuliaLowering threw given input: │ code = │ :(#= /home/pkgeval/.julia/packages/Helium/LcQDp/src/xtract.jl:1 =# Core.@doc "**`Helium.getmat`** -*Function*.\n\n `Helium.getmat(source, DataType, numRows::Int64, numCols::Int64,\n isHeader::Bool, isRowNames::BoolnumRows)` => `matrix, column names, row names`\n\nRead the data matrix and extract column and row names if they exist.\n\n" function getmat(he::HeAttributes) │ #= /home/pkgeval/.julia/packages/Helium/LcQDp/src/xtract.jl:10 =# │ #= /home/pkgeval/.julia/packages/Helium/LcQDp/src/xtract.jl:19 =# │ if he.hasColNames │ #= /home/pkgeval/.julia/packages/Helium/LcQDp/src/xtract.jl:20 =# │ he.numRows -= 1 │ end │ #= /home/pkgeval/.julia/packages/Helium/LcQDp/src/xtract.jl:23 =# │ if he.hasRowNames │ #= /home/pkgeval/.julia/packages/Helium/LcQDp/src/xtract.jl:24 =# │ he.numCols -= 1 │ end │ #= /home/pkgeval/.julia/packages/Helium/LcQDp/src/xtract.jl:32 =# │ mat = Array{he.matType}(undef, he.numRows, he.numCols) │ #= /home/pkgeval/.julia/packages/Helium/LcQDp/src/xtract.jl:33 =# │ if he.hasRowNames │ #= /home/pkgeval/.julia/packages/Helium/LcQDp/src/xtract.jl:34 =# │ rowNames = Array{String}(undef, he.numRows, 1) │ else │ #= /home/pkgeval/.julia/packages/Helium/LcQDp/src/xtract.jl:36 =# │ rowNames = [""] │ end │ #= /home/pkgeval/.julia/packages/Helium/LcQDp/src/xtract.jl:43 =# │ global i = 0 │ #= /home/pkgeval/.julia/packages/Helium/LcQDp/src/xtract.jl:44 =# │ open(he.fileName) do io │ #= /home/pkgeval/.julia/packages/Helium/LcQDp/src/xtract.jl:46 =# │ if he.hasColNames │ #= /home/pkgeval/.julia/packages/Helium/LcQDp/src/xtract.jl:47 =# │ global colNames = split(readline(io), he.sep) │ else │ #= /home/pkgeval/.julia/packages/Helium/LcQDp/src/xtract.jl:49 =# │ global colNames = [""] │ end │ #= /home/pkgeval/.julia/packages/Helium/LcQDp/src/xtract.jl:52 =# │ if he.hasRowNames │ #= /home/pkgeval/.julia/packages/Helium/LcQDp/src/xtract.jl:53 =# │ while !(eof(io)) │ #= /home/pkgeval/.julia/packages/Helium/LcQDp/src/xtract.jl:54 =# │ tmp = [readline(io)] │ #= /home/pkgeval/.julia/packages/Helium/LcQDp/src/xtract.jl:55 =# │ newLine = eval(Meta.parse(string("rslt=split(replace($(tmp)[1], r\"$(he.strMiss)|NA|MISSING\"i => \"NaN\"), \"$(he.sep)\")"))) │ #= /home/pkgeval/.julia/packages/Helium/LcQDp/src/xtract.jl:56 =# │ global i += 1 │ #= /home/pkgeval/.julia/packages/Helium/LcQDp/src/xtract.jl:57 =# │ global rowNames[i] = newLine[1] │ #= /home/pkgeval/.julia/packages/Helium/LcQDp/src/xtract.jl:58 =# │ global mat[i, :] = parse.(he.matType, newLine[2:var"end"]) │ #= /home/pkgeval/.julia/packages/Helium/LcQDp/src/xtract.jl:59 =# │ end │ #= /home/pkgeval/.julia/packages/Helium/LcQDp/src/xtract.jl:60 =# │ if he.hasColNames │ #= /home/pkgeval/.julia/packages/Helium/LcQDp/src/xtract.jl:61 =# │ colNames = colNames[2:var"end"] │ end │ else │ #= /home/pkgeval/.julia/packages/Helium/LcQDp/src/xtract.jl:64 =# │ while !(eof(io)) │ #= /home/pkgeval/.julia/packages/Helium/LcQDp/src/xtract.jl:65 =# │ tmp = [readline(io)] │ #= /home/pkgeval/.julia/packages/Helium/LcQDp/src/xtract.jl:66 =# │ newLine = eval(Meta.parse(string("rslt=split(replace($(tmp)[1], r\"$(he.strMiss)|NA|MISSING\"i => \"NaN\"), \"$(he.sep)\")"))) │ #= /home/pkgeval/.julia/packages/Helium/LcQDp/src/xtract.jl:67 =# │ global i += 1 │ #= /home/pkgeval/.julia/packages/Helium/LcQDp/src/xtract.jl:68 =# │ global mat[i, :] = parse.(he.matType, newLine[1:var"end"]) │ #= /home/pkgeval/.julia/packages/Helium/LcQDp/src/xtract.jl:69 =# │ end │ end │ end │ #= /home/pkgeval/.julia/packages/Helium/LcQDp/src/xtract.jl:73 =# │ return (mat, string.(colNames)[:], string.(rowNames)[:], ["" ""]) │ end) │ st0 = │ SyntaxTree with attributes mod,kind,var_id,toplevel_pure,scope_type,macro_source,name_val,syntax_flags,meta,scope_layer,value,jl_source,is_toplevel_thunk,source,__macro_ctx__ │ [macrocall] │ │ @doc :: Identifier │ mod │ :(#= /home/pkgeval/.julia/packages/Helium/LcQDp/src/xtract.jl:1 =#) :: Value │ │ "**`Helium.getmat`** -*Function*.\n\n `Helium.getmat(source, DataType, numRows::Int64, numCols::Int64,\n isHeader::Bool, isRowNames::BoolnumRows)` => `matrix, column names, row names`\n\nRead the data matrix and extract column and row names if they exist.\n\n" :: Value │ │ [function] │ │ [call] │ │ getmat :: Identifier │ │ [::] │ │ he :: Identifier │ │ HeAttributes :: Identifier │ │ [block] │ │ [if] │ │ [.] │ │ he :: Identifier │ │ [inert] │ │ hasColNames :: Identifier │ │ [block] │ │ [unknown_head] │ │ [.] │ │ he :: Identifier │ │ [inert] │ │ numRows :: Identifier │ │ 1 :: Value │ │ [if] │ │ [.] │ │ he :: Identifier │ │ [inert] │ │ hasRowNames :: Identifier │ │ [block] │ │ [unknown_head] │ │ [.] │ │ he :: Identifier │ │ [inert] │ │ numCols :: Identifier │ │ 1 :: Value │ │ [=] │ │ mat :: Identifier │ │ [call] │ │ [curly] │ │ Array :: Identifier │ │ [.] │ │ he :: Identifier │ │ [inert] │ │ matType :: Identifier │ │ undef :: Identifier │ │ [.] │ │ he :: Identifier │ │ [inert] │ │ numRows :: Identifier │ │ [.] │ │ he :: Identifier │ │ [inert] │ │ numCols :: Identifier │ │ [if] │ │ [.] │ │ he :: Identifier │ │ [inert] │ │ hasRowNames :: Identifier │ │ [block] │ │ [=] │ │ rowNames :: Identifier │ │ [call] │ │ [curly] │ │ Array :: Identifier │ │ String :: Identifier │ │ undef :: Identifier │ │ [.] │ │ he :: Identifier │ │ [inert] │ │ numRows :: Identifier │ │ 1 :: Value │ │ [block] │ │ [=] │ │ rowNames :: Identifier │ │ [vect] │ │ "" :: Value │ │ [global] │ │ [=] │ │ i :: Identifier │ │ 0 :: Value │ │ [do] │ │ [call] │ │ open :: Identifier │ │ [.] │ │ he :: Identifier │ │ [inert] │ │ fileName :: Identifier │ │ [->] │ │ [tuple] │ │ io :: Identifier │ │ [block] │ │ [if] │ │ [.] │ │ he :: Identifier │ │ [inert] │ │ hasColNames :: Identifier │ │ [block] │ │ [global] │ │ [=] │ │ colNames :: Identifier │ │ [call] │ │ split :: Identifier │ │ [call] │ │ readline :: Identifier │ │ io :: Identifier │ │ [.] │ │ he :: Identifier │ │ [inert] │ │ sep :: Identifier │ │ [block] │ │ [global] │ │ [=] │ │ colNames :: Identifier │ │ [vect] │ │ "" :: Value │ │ [if] │ │ [.] │ │ he :: Identifier │ │ [inert] │ │ hasRowNames :: Identifier │ │ [block] │ │ [while] │ │ [call] │ │ ! :: Identifier │ │ [call] │ │ eof :: Identifier │ │ io :: Identifier │ │ [block] │ │ [=] │ │ tmp :: Identifier │ │ [vect] │ │ [call] │ │ readline :: Identifier │ │ io :: Identifier │ │ [=] │ │ newLine :: Identifier │ │ [call] │ │ eval :: Identifier │ │ [call] │ │ [.] │ │ Meta :: Identifier │ │ [inert] │ │ parse :: Identifier │ │ [call] │ │ string :: Identifier │ │ [string] │ │ "rslt=split(replace(" :: Value │ │ tmp :: Identifier │ │ "[1], r\"" :: Value │ │ [.] │ │ he :: Identifier │ │ [inert] │ │ strMiss :: Identifier │ │ "|NA|MISSING\"i => \"NaN\"), \"" :: Value │ │ [.] │ │ he :: Identifier │ │ [inert] │ │ sep :: Identifier │ │ "\")" :: Value │ │ [global] │ │ [unknown_head] │ │ i :: Identifier │ │ 1 :: Value │ │ [global] │ │ [=] │ │ [ref] │ │ rowNames :: Identifier │ │ i :: Identifier │ │ [ref] │ │ newLine :: Identifier │ │ 1 :: Value │ │ [global] │ │ [=] │ │ [ref] │ │ mat :: Identifier │ │ i :: Identifier │ │ : :: Identifier │ │ [.] │ │ parse :: Identifier │ │ [tuple] │ │ [.] │ │ he :: Identifier │ │ [inert] │ │ matType :: Identifier │ │ [ref] │ │ newLine :: Identifier │ │ [call] │ │ : :: Identifier │ │ 2 :: Value │ │ end :: Identifier │ │ [if] │ │ [.] │ │ he :: Identifier │ │ [inert] │ │ hasColNames :: Identifier │ │ [block] │ │ [=] │ │ colNames :: Identifier │ │ [ref] │ │ colNames :: Identifier │ │ [call] │ │ : :: Identifier │ │ 2 :: Value │ │ end :: Identifier │ │ [block] │ │ [while] │ │ [call] │ │ ! :: Identifier │ │ [call] │ │ eof :: Identifier │ │ io :: Identifier │ │ [block] │ │ [=] │ │ tmp :: Identifier │ │ [vect] │ │ [call] │ │ readline :: Identifier │ │ io :: Identifier │ │ [=] │ │ newLine :: Identifier │ │ [call] │ │ eval :: Identifier │ │ [call] │ │ [.] │ │ Meta :: Identifier │ │ [inert] │ │ parse :: Identifier │ │ [call] │ │ string :: Identifier │ │ [string] │ │ "rslt=split(replace(" :: Value │ │ tmp :: Identifier │ │ "[1], r\"" :: Value │ │ [.] │ │ he :: Identifier │ │ [inert] │ │ strMiss :: Identifier │ │ "|NA|MISSING\"i => \"NaN\"), \"" :: Value │ │ [.] │ │ he :: Identifier │ │ [inert] │ │ sep :: Identifier │ │ "\")" :: Value │ │ [global] │ │ [unknown_head] │ │ i :: Identifier │ │ 1 :: Value │ │ [global] │ │ [=] │ │ [ref] │ │ mat :: Identifier │ │ i :: Identifier │ │ : :: Identifier │ │ [.] │ │ parse :: Identifier │ │ [tuple] │ │ [.] │ │ he :: Identifier │ │ [inert] │ │ matType :: Identifier │ │ [ref] │ │ newLine :: Identifier │ │ [call] │ │ : :: Identifier │ │ 1 :: Value │ │ end :: Identifier │ │ [return] │ │ [tuple] │ │ mat :: Identifier │ │ [ref] │ │ [.] │ │ string :: Identifier │ │ [tuple] │ │ colNames :: Identifier │ │ : :: Identifier │ │ [ref] │ │ [.] │ │ string :: Identifier │ │ [tuple] │ │ rowNames :: Identifier │ │ : :: Identifier │ │ [hcat] │ │ "" :: Value │ │ "" :: Value │ │ │ st1 = │ SyntaxTree with attributes mod,kind,var_id,toplevel_pure,scope_type,macro_source,name_val,syntax_flags,meta,scope_layer,value,jl_source,is_toplevel_thunk,source │ [block] │ │ [=] │ │ val :: Identifier │ scope_layer=3 │ [function] │ │ [call] │ │ getmat :: Identifier │ scope_layer=1 │ [::] │ │ he :: Identifier │ scope_layer=1 │ HeAttributes :: Identifier │ scope_layer=1 │ [block] │ │ [if] │ │ [.] │ │ he :: Identifier │ scope_layer=1 │ [inert] │ │ hasColNames :: Identifier │ │ [block] │ │ [unknown_head] │ scope_layer=1 │ [.] │ │ he :: Identifier │ scope_layer=1 │ [inert] │ │ numRows :: Identifier │ │ 1 :: Value │ macro_source=284 │ [if] │ │ [.] │ │ he :: Identifier │ scope_layer=1 │ [inert] │ │ hasRowNames :: Identifier │ │ [block] │ │ [unknown_head] │ scope_layer=1 │ [.] │ │ he :: Identifier │ scope_layer=1 │ [inert] │ │ numCols :: Identifier │ │ 1 :: Value │ macro_source=284 │ [=] │ │ mat :: Identifier │ scope_layer=1 │ [call] │ │ [curly] │ │ Array :: Identifier │ scope_layer=1 │ [.] │ │ he :: Identifier │ scope_layer=1 │ [inert] │ │ matType :: Identifier │ │ undef :: Identifier │ scope_layer=1 │ [.] │ │ he :: Identifier │ scope_layer=1 │ [inert] │ │ numRows :: Identifier │ │ [.] │ │ he :: Identifier │ scope_layer=1 │ [inert] │ │ numCols :: Identifier │ │ [if] │ │ [.] │ │ he :: Identifier │ scope_layer=1 │ [inert] │ │ hasRowNames :: Identifier │ │ [block] │ │ [=] │ │ rowNames :: Identifier │ scope_layer=1 │ [call] │ │ [curly] │ │ Array :: Identifier │ scope_layer=1 │ String :: Identifier │ scope_layer=1 │ undef :: Identifier │ scope_layer=1 │ [.] │ │ he :: Identifier │ scope_layer=1 │ [inert] │ │ numRows :: Identifier │ │ 1 :: Value │ macro_source=284 │ [block] │ │ [=] │ │ rowNames :: Identifier │ scope_layer=1 │ [vect] │ macro_source=284 │ "" :: Value │ macro_source=284 │ [global] │ │ [=] │ │ i :: Identifier │ scope_layer=1 │ 0 :: Value │ macro_source=284 │ [do] │ │ [call] │ │ open :: Identifier │ scope_layer=1 │ [.] │ │ he :: Identifier │ scope_layer=1 │ [inert] │ │ fileName :: Identifier │ │ [->] │ │ [tuple] │ │ io :: Identifier │ scope_layer=1 │ [block] │ │ [if] │ │ [.] │ │ he :: Identifier │ scope_layer=1 │ [inert] │ │ hasColNames :: Identifier │ │ [block] │ │ [global] │ │ [=] │ │ colNames :: Identifier │ scope_layer=1 │ [call] │ │ split :: Identifier │ scope_layer=1 │ [call] │ │ readline :: Identifier │ scope_layer=1 │ io :: Identifier │ scope_layer=1 │ [.] │ │ he :: Identifier │ scope_layer=1 │ [inert] │ │ sep :: Identifier │ │ [block] │ │ [global] │ │ [=] │ │ colNames :: Identifier │ scope_layer=1 │ [vect] │ macro_source=284 │ "" :: Value │ macro_source=284 │ [if] │ │ [.] │ │ he :: Identifier │ scope_layer=1 │ [inert] │ │ hasRowNames :: Identifier │ │ [block] │ │ [while] │ │ [call] │ │ ! :: Identifier │ scope_layer=1 │ [call] │ │ eof :: Identifier │ scope_layer=1 │ io :: Identifier │ scope_layer=1 │ [block] │ │ [=] │ │ tmp :: Identifier │ scope_layer=1 │ [vect] │ │ [call] │ │ readline :: Identifier │ scope_layer=1 │ io :: Identifier │ scope_layer=1 │ [=] │ │ newLine :: Identifier │ scope_layer=1 │ [call] │ │ eval :: Identifier │ scope_layer=1 │ [call] │ │ [.] │ │ Meta :: Identifier │ scope_layer=1 │ [inert] │ │ parse :: Identifier │ │ [call] │ │ string :: Identifier │ scope_layer=1 │ [string] │ │ "rslt=split(replace(" :: Value │ macro_source=284 │ tmp :: Identifier │ scope_layer=1 │ "[1], r\"" :: Value │ macro_source=284 │ [.] │ │ he :: Identifier │ scope_layer=1 │ [inert] │ │ strMiss :: Identifier │ │ "|NA|MISSING\"i => \"NaN\"), \"" :: Value │ macro_source=284 │ [.] │ │ he :: Identifier │ scope_layer=1 │ [inert] │ │ sep :: Identifier │ │ "\")" :: Value │ macro_source=284 │ [global] │ │ [unknown_head] │ scope_layer=1 │ i :: Identifier │ scope_layer=1 │ 1 :: Value │ macro_source=284 │ [global] │ │ [=] │ │ [ref] │ │ rowNames :: Identifier │ scope_layer=1 │ i :: Identifier │ scope_layer=1 │ [ref] │ │ newLine :: Identifier │ scope_layer=1 │ 1 :: Value │ macro_source=284 │ [global] │ │ [=] │ │ [ref] │ │ mat :: Identifier │ scope_layer=1 │ i :: Identifier │ scope_layer=1 │ : :: Identifier │ scope_layer=1 │ [.] │ │ parse :: Identifier │ scope_layer=1 │ [tuple] │ │ [.] │ │ he :: Identifier │ scope_layer=1 │ [inert] │ │ matType :: Identifier │ │ [ref] │ │ newLine :: Identifier │ scope_layer=1 │ [call] │ │ : :: Identifier │ scope_layer=1 │ 2 :: Value │ macro_source=284 │ end :: Identifier │ scope_layer=1 │ [if] │ │ [.] │ │ he :: Identifier │ scope_layer=1 │ [inert] │ │ hasColNames :: Identifier │ │ [block] │ │ [=] │ │ colNames :: Identifier │ scope_layer=1 │ [ref] │ │ colNames :: Identifier │ scope_layer=1 │ [call] │ │ : :: Identifier │ scope_layer=1 │ 2 :: Value │ macro_source=284 │ end :: Identifier │ scope_layer=1 │ [block] │ │ [while] │ │ [call] │ │ ! :: Identifier │ scope_layer=1 │ [call] │ │ eof :: Identifier │ scope_layer=1 │ io :: Identifier │ scope_layer=1 │ [block] │ │ [=] │ │ tmp :: Identifier │ scope_layer=1 │ [vect] │ │ [call] │ │ readline :: Identifier │ scope_layer=1 │ io :: Identifier │ scope_layer=1 │ [=] │ │ newLine :: Identifier │ scope_layer=1 │ [call] │ │ eval :: Identifier │ scope_layer=1 │ [call] │ │ [.] │ │ Meta :: Identifier │ scope_layer=1 │ [inert] │ │ parse :: Identifier │ │ [call] │ │ string :: Identifier │ scope_layer=1 │ [string] │ │ "rslt=split(replace(" :: Value │ macro_source=284 │ tmp :: Identifier │ scope_layer=1 │ "[1], r\"" :: Value │ macro_source=284 │ [.] │ │ he :: Identifier │ scope_layer=1 │ [inert] │ │ strMiss :: Identifier │ │ "|NA|MISSING\"i => \"NaN\"), \"" :: Value │ macro_source=284 │ [.] │ │ he :: Identifier │ scope_layer=1 │ [inert] │ │ sep :: Identifier │ │ "\")" :: Value │ macro_source=284 │ [global] │ │ [unknown_head] │ scope_layer=1 │ i :: Identifier │ scope_layer=1 │ 1 :: Value │ macro_source=284 │ [global] │ │ [=] │ │ [ref] │ │ mat :: Identifier │ scope_layer=1 │ i :: Identifier │ scope_layer=1 │ : :: Identifier │ scope_layer=1 │ [.] │ │ parse :: Identifier │ scope_layer=1 │ [tuple] │ │ [.] │ │ he :: Identifier │ scope_layer=1 │ [inert] │ │ matType :: Identifier │ │ [ref] │ │ newLine :: Identifier │ scope_layer=1 │ [call] │ │ : :: Identifier │ scope_layer=1 │ 1 :: Value │ macro_source=284 │ end :: Identifier │ scope_layer=1 │ [return] │ │ [tuple] │ │ mat :: Identifier │ scope_layer=1 │ [ref] │ │ [.] │ │ string :: Identifier │ scope_layer=1 │ [tuple] │ │ colNames :: Identifier │ scope_layer=1 │ : :: Identifier │ scope_layer=1 │ [ref] │ │ [.] │ │ string :: Identifier │ scope_layer=1 │ [tuple] │ │ rowNames :: Identifier │ scope_layer=1 │ : :: Identifier │ scope_layer=1 │ [hcat] │ macro_source=284 │ "" :: Value │ macro_source=284 │ "" :: Value │ macro_source=284 │ [call] │ │ Base.Docs.doc! :: Value │ macro_source=284 │ Helium :: Value │ macro_source=284 │ [call] │ │ Base.Docs.Binding :: Value │ macro_source=284 │ Helium :: Value │ │ [inert] │ jl_source=L65 │ getmat :: Identifier │ │ [call] │ macro_source=284 │ Base.Docs.docstr :: Value │ macro_source=284 │ [call] │ macro_source=284 │ Core.svec :: Value │ macro_source=284 │ "**`Helium.getmat`** -*Function*.\n\n `Helium.getmat(source, DataType, numRows::Int64, numCols::Int64,\n isHeader::Bool, isRowNames::BoolnumRows)` => `matrix, column names, row names`\n\nRead the data matrix and extract column and row names if they exist.\n\n" :: Value │ macro_source=284 │ [call] │ macro_source=284 │ Dict{Symbol, Any} :: Value │ macro_source=284 │ :path => "/home/pkgeval/.julia/packages/Helium/LcQDp/src/xtract.jl" :: Value │ macro_source=284 │ :linenumber => 1 :: Value │ macro_source=284 │ :module => Helium :: Value │ macro_source=284 │ [curly] │ │ Union :: Identifier │ scope_layer=1 │ [curly] │ │ Tuple :: Identifier │ scope_layer=1 │ HeAttributes :: Identifier │ scope_layer=1 │ val :: Identifier │ scope_layer=3 │ │ file = "/home/pkgeval/.julia/packages/Helium/LcQDp/src/xtract.jl" │ line = 1 └ mod = Helium ERROR: LoadError: No match found for `(ref rowNames i)` at #= /source/usr/share/julia/JuliaLowering/src/desugaring.jl:2184 =# Stacktrace:  [1] make_lhs_decls(ctx::Base.JuliaLowering.DesugaringContext{Dict{Symbol, Dict{Int64, Any}}}, stmts::Base.JuliaSyntax.SyntaxList{Dict{Symbol, Dict{Int64, Any}}, Vector{Int64}}, declkind::Base.JuliaSyntax.Kind, declmeta::Nothing, ex::Base.JuliaSyntax.SyntaxTree{Dict{Symbol, Dict{Int64, Any}}}, type_decls::Bool)  @ Base.JuliaLowering /source/usr/share/julia/JuliaLowering/src/desugaring.jl:2184  [2] expand_decls(ctx::Base.JuliaLowering.DesugaringContext{Dict{Symbol, Dict{Int64, Any}}}, ex::Base.JuliaSyntax.SyntaxTree{Dict{Symbol, Dict{Int64, Any}}})  @ Base.JuliaLowering /source/usr/share/julia/JuliaLowering/src/desugaring.jl:2212  [3] expand_forms_2(ctx::Base.JuliaLowering.DesugaringContext{Dict{Symbol, Dict{Int64, Any}}}, ex::Base.JuliaSyntax.SyntaxTree{Dict{Symbol, Dict{Int64, Any}}}, docs::Nothing)  @ Base.JuliaLowering /source/usr/share/julia/JuliaLowering/src/desugaring.jl:4297  [4] expand_forms_2  @ /source/usr/share/julia/JuliaLowering/src/desugaring.jl:4152 [inlined]  [5] #expand_forms_2##2  @ /source/usr/share/julia/JuliaLowering/src/desugaring.jl:4440 [inlined]  [6] mapchildren(f::Base.JuliaLowering.var"#expand_forms_2##2#expand_forms_2##3"{Base.JuliaLowering.DesugaringContext{Dict{Symbol, Dict{Int64, Any}}}}, ctx::Base.JuliaLowering.DesugaringContext{Dict{Symbol, Dict{Int64, Any}}}, ex::Base.JuliaSyntax.SyntaxTree{Dict{Symbol, Dict{Int64, Any}}})  @ Base.JuliaSyntax /source/usr/share/julia/JuliaSyntax/src/porcelain/syntax_graph.jl:707  [7] expand_forms_2(ctx::Base.JuliaLowering.DesugaringContext{Dict{Symbol, Dict{Int64, Any}}}, ex::Base.JuliaSyntax.SyntaxTree{Dict{Symbol, Dict{Int64, Any}}}, docs::Nothing)  @ Base.JuliaLowering /source/usr/share/julia/JuliaLowering/src/desugaring.jl:4440  [8] child(graph::Base.JuliaSyntax.SyntaxGraph{Dict{Symbol, Dict{Int64, Any}}}, id::Int64, i::Int64)  @ Base.JuliaSyntax /source/usr/share/julia/JuliaLowering/src/desugaring.jl:4152 [inlined]  [9] getindex(ex::Base.JuliaSyntax.SyntaxTree{Dict{Symbol, Dict{Int64, Any}}}, i::Int64)  @ Base.JuliaSyntax /source/usr/share/julia/JuliaLowering/src/ast.jl:355 [inlined]  [10] expand_forms_2(ctx::Base.JuliaLowering.DesugaringContext{Dict{Symbol, Dict{Int64, Any}}}, ex::Base.JuliaSyntax.SyntaxTree{Dict{Symbol, Dict{Int64, Any}}}, docs::Nothing)  @ Base.JuliaLowering /source/usr/share/julia/JuliaLowering/src/desugaring.jl:4387  [11] expand_forms_2  @ /source/usr/share/julia/JuliaLowering/src/desugaring.jl:4152 [inlined]  [12] #expand_forms_2##2  @ /source/usr/share/julia/JuliaLowering/src/desugaring.jl:4440 [inlined]  [13] mapchildren(f::Base.JuliaLowering.var"#expand_forms_2##2#expand_forms_2##3"{Base.JuliaLowering.DesugaringContext{Dict{Symbol, Dict{Int64, Any}}}}, ctx::Base.JuliaLowering.DesugaringContext{Dict{Symbol, Dict{Int64, Any}}}, ex::Base.JuliaSyntax.SyntaxTree{Dict{Symbol, Dict{Int64, Any}}})  @ Base.JuliaSyntax /source/usr/share/julia/JuliaSyntax/src/porcelain/syntax_graph.jl:707  [14] expand_forms_2(ctx::Base.JuliaLowering.DesugaringContext{Dict{Symbol, Dict{Int64, Any}}}, ex::Base.JuliaSyntax.SyntaxTree{Dict{Symbol, Dict{Int64, Any}}}, docs::Nothing)  @ Base.JuliaLowering /source/usr/share/julia/JuliaLowering/src/desugaring.jl:4440  [15] iterate(A::Base.JuliaSyntax.SyntaxList{Dict{Symbol, Dict{Int64, Any}}, SubArray{Int64, 1, Vector{Int64}, Tuple{UnitRange{Int64}}, true}})  @ Base /source/usr/share/julia/JuliaLowering/src/desugaring.jl:4152 [inlined]  [16] expand_forms_2(ctx::Base.JuliaLowering.DesugaringContext{Dict{Symbol, Dict{Int64, Any}}}, exs::Base.JuliaSyntax.SyntaxList{Dict{Symbol, Dict{Int64, Any}}, SubArray{Int64, 1, Vector{Int64}, Tuple{UnitRange{Int64}}, true}})  @ Base.JuliaLowering /source/usr/share/julia/JuliaLowering/src/desugaring.jl:4447  [17] getindex(ex::Base.JuliaSyntax.SyntaxTree{Dict{Symbol, Dict{Int64, Any}}}, i::Int64)  @ Base.JuliaSyntax /source/usr/share/julia/JuliaLowering/src/ast.jl:355 [inlined]  [18] expand_forms_2(ctx::Base.JuliaLowering.DesugaringContext{Dict{Symbol, Dict{Int64, Any}}}, ex::Base.JuliaSyntax.SyntaxTree{Dict{Symbol, Dict{Int64, Any}}}, docs::Nothing)  @ Base.JuliaLowering /source/usr/share/julia/JuliaLowering/src/desugaring.jl:4288  [19] expand_forms_2  @ /source/usr/share/julia/JuliaLowering/src/desugaring.jl:4152 [inlined]  [20] #expand_forms_2##2  @ /source/usr/share/julia/JuliaLowering/src/desugaring.jl:4440 [inlined]  [21] mapchildren(f::Base.JuliaLowering.var"#expand_forms_2##2#expand_forms_2##3"{Base.JuliaLowering.DesugaringContext{Dict{Symbol, Dict{Int64, Any}}}}, ctx::Base.JuliaLowering.DesugaringContext{Dict{Symbol, Dict{Int64, Any}}}, ex::Base.JuliaSyntax.SyntaxTree{Dict{Symbol, Dict{Int64, Any}}})  @ Base.JuliaSyntax /source/usr/share/julia/JuliaSyntax/src/porcelain/syntax_graph.jl:707  [22] expand_forms_2(ctx::Base.JuliaLowering.DesugaringContext{Dict{Symbol, Dict{Int64, Any}}}, ex::Base.JuliaSyntax.SyntaxTree{Dict{Symbol, Dict{Int64, Any}}}, docs::Nothing)  @ Base.JuliaLowering /source/usr/share/julia/JuliaLowering/src/desugaring.jl:4440  [23] _node_id(graph::Base.JuliaSyntax.SyntaxGraph{Dict{Symbol, Dict{Int64, Any}}}, ex::Base.JuliaSyntax.SyntaxTree{Dict{Symbol, Dict{Int64, Any}}})  @ Base.JuliaLowering /source/usr/share/julia/JuliaLowering/src/desugaring.jl:4152 [inlined]  [24] _push_nodeid!(graph::Base.JuliaSyntax.SyntaxGraph{Dict{Symbol, Dict{Int64, Any}}}, ids::Vector{Int64}, val::Base.JuliaSyntax.SyntaxTree{Dict{Symbol, Dict{Int64, Any}}})  @ Base.JuliaLowering /source/usr/share/julia/JuliaLowering/src/ast.jl:288 [inlined]  [25] method_def_expr(ctx::Base.JuliaLowering.DesugaringContext{Dict{Symbol, Dict{Int64, Any}}}, src::Base.JuliaSyntax.SyntaxTree{Dict{Symbol, Dict{Int64, Any}}}, mtable::Base.JuliaSyntax.SyntaxTree{Dict{Symbol, Dict{Int64, Any}}}, sparams::Base.JuliaSyntax.SyntaxList{Dict{Symbol, Dict{Int64, Any}}, Vector{Int64}}, argl::Base.JuliaSyntax.SyntaxList{Dict{Symbol, Dict{Int64, Any}}, Vector{Int64}}, body::Base.JuliaSyntax.SyntaxTree{Dict{Symbol, Dict{Int64, Any}}}, rett::Base.JuliaSyntax.SyntaxTree{Dict{Symbol, Dict{Int64, Any}}})  @ Base.JuliaLowering /source/usr/share/julia/JuliaLowering/src/desugaring.jl:2419  [26] (::Colon)(start::Int64, stop::Int64)  @ Base /source/usr/share/julia/JuliaLowering/src/ast.jl:355 [inlined]  [27] expand_function_def(ctx::Base.JuliaLowering.DesugaringContext{Dict{Symbol, Dict{Int64, Any}}}, src::Base.JuliaSyntax.SyntaxTree{Dict{Symbol, Dict{Int64, Any}}}, raw_args::Base.JuliaSyntax.SyntaxList{Dict{Symbol, Dict{Int64, Any}}, Vector{Int64}}, wheres::Base.JuliaSyntax.SyntaxList{Dict{Symbol, Dict{Int64, Any}}, Vector{Int64}}, body::Base.JuliaSyntax.SyntaxTree{Dict{Symbol, Dict{Int64, Any}}}, rett::Base.JuliaSyntax.SyntaxTree{Dict{Symbol, Dict{Int64, Any}}})  @ Base.JuliaLowering /source/usr/share/julia/JuliaLowering/src/desugaring.jl:2873  [28] getindex(ex::Base.JuliaSyntax.SyntaxTree{Dict{Symbol, Dict{Int64, Any}}}, i::Int64)  @ Base.JuliaSyntax /source/usr/share/julia/JuliaLowering/src/ast.jl:355 [inlined]  [29] expand_forms_2(ctx::Base.JuliaLowering.DesugaringContext{Dict{Symbol, Dict{Int64, Any}}}, ex::Base.JuliaSyntax.SyntaxTree{Dict{Symbol, Dict{Int64, Any}}}, docs::Nothing)  @ Base.JuliaLowering /source/usr/share/julia/JuliaLowering/src/desugaring.jl:4276  [30] iterate(A::Base.JuliaSyntax.SyntaxList{Dict{Symbol, Dict{Int64, Any}}, Vector{Int64}})  @ Base /source/usr/share/julia/JuliaLowering/src/desugaring.jl:4152 [inlined]  [31] expand_forms_2(ctx::Base.JuliaLowering.DesugaringContext{Dict{Symbol, Dict{Int64, Any}}}, exs::Base.JuliaSyntax.SyntaxList{Dict{Symbol, Dict{Int64, Any}}, Vector{Int64}})  @ Base.JuliaLowering /source/usr/share/julia/JuliaLowering/src/desugaring.jl:4447  [32] _push_nodeid!(graph::Base.JuliaSyntax.SyntaxGraph{Dict{Symbol, Dict{Int64, Any}}}, ids::Vector{Int64}, val::Base.JuliaSyntax.SyntaxTree{Dict{Symbol, Dict{Int64, Any}}})  @ Base.JuliaLowering /source/usr/share/julia/JuliaLowering/src/ast.jl:355 [inlined]  [33] expand_call(ctx::Base.JuliaLowering.DesugaringContext{Dict{Symbol, Dict{Int64, Any}}}, ex::Base.JuliaSyntax.SyntaxTree{Dict{Symbol, Dict{Int64, Any}}})  @ Base.JuliaLowering /source/usr/share/julia/JuliaLowering/src/desugaring.jl:1941  [34] expand_forms_2(ctx::Base.JuliaLowering.DesugaringContext{Dict{Symbol, Dict{Int64, Any}}}, ex::Base.JuliaSyntax.SyntaxTree{Dict{Symbol, Dict{Int64, Any}}}, docs::Nothing)  @ Base.JuliaLowering /source/usr/share/julia/JuliaLowering/src/desugaring.jl:4156  [35] expand_forms_2  @ /source/usr/share/julia/JuliaLowering/src/desugaring.jl:4152 [inlined]  [36] #expand_forms_2##2  @ /source/usr/share/julia/JuliaLowering/src/desugaring.jl:4440 [inlined]  [37] mapchildren(f::Base.JuliaLowering.var"#expand_forms_2##2#expand_forms_2##3"{Base.JuliaLowering.DesugaringContext{Dict{Symbol, Dict{Int64, Any}}}}, ctx::Base.JuliaLowering.DesugaringContext{Dict{Symbol, Dict{Int64, Any}}}, ex::Base.JuliaSyntax.SyntaxTree{Dict{Symbol, Dict{Int64, Any}}})  @ Base.JuliaSyntax /source/usr/share/julia/JuliaSyntax/src/porcelain/syntax_graph.jl:707  [38] expand_forms_2(ctx::Base.JuliaLowering.DesugaringContext{Dict{Symbol, Dict{Int64, Any}}}, ex::Base.JuliaSyntax.SyntaxTree{Dict{Symbol, Dict{Int64, Any}}}, docs::Nothing)  @ Base.JuliaLowering /source/usr/share/julia/JuliaLowering/src/desugaring.jl:4440  [39] _node_id(graph::Base.JuliaSyntax.SyntaxGraph{Dict{Symbol, Dict{Int64, Any}}}, ex::Base.JuliaSyntax.SyntaxTree{Dict{Symbol, Dict{Int64, Any}}})  @ Base.JuliaLowering /source/usr/share/julia/JuliaLowering/src/desugaring.jl:4152 [inlined]  [40] _push_nodeid!(graph::Base.JuliaSyntax.SyntaxGraph{Dict{Symbol, Dict{Int64, Any}}}, ids::Vector{Int64}, val::Base.JuliaSyntax.SyntaxTree{Dict{Symbol, Dict{Int64, Any}}})  @ Base.JuliaLowering /source/usr/share/julia/JuliaLowering/src/ast.jl:288 [inlined]  [41] method_def_expr(ctx::Base.JuliaLowering.DesugaringContext{Dict{Symbol, Dict{Int64, Any}}}, src::Base.JuliaSyntax.SyntaxTree{Dict{Symbol, Dict{Int64, Any}}}, mtable::Base.JuliaSyntax.SyntaxTree{Dict{Symbol, Dict{Int64, Any}}}, sparams::Base.JuliaSyntax.SyntaxList{Dict{Symbol, Dict{Int64, Any}}, Vector{Int64}}, argl::Base.JuliaSyntax.SyntaxList{Dict{Symbol, Dict{Int64, Any}}, Vector{Int64}}, body::Base.JuliaSyntax.SyntaxTree{Dict{Symbol, Dict{Int64, Any}}}, rett::Base.JuliaSyntax.SyntaxTree{Dict{Symbol, Dict{Int64, Any}}})  @ Base.JuliaLowering /source/usr/share/julia/JuliaLowering/src/desugaring.jl:2419  [42] (::Colon)(start::Int64, stop::Int64)  @ Base /source/usr/share/julia/JuliaLowering/src/ast.jl:355 [inlined]  [43] expand_function_def(ctx::Base.JuliaLowering.DesugaringContext{Dict{Symbol, Dict{Int64, Any}}}, src::Base.JuliaSyntax.SyntaxTree{Dict{Symbol, Dict{Int64, Any}}}, raw_args::Base.JuliaSyntax.SyntaxList{Dict{Symbol, Dict{Int64, Any}}, Vector{Int64}}, wheres::Base.JuliaSyntax.SyntaxList{Dict{Symbol, Dict{Int64, Any}}, Vector{Int64}}, body::Base.JuliaSyntax.SyntaxTree{Dict{Symbol, Dict{Int64, Any}}}, rett::Base.JuliaSyntax.SyntaxTree{Dict{Symbol, Dict{Int64, Any}}})  @ Base.JuliaLowering /source/usr/share/julia/JuliaLowering/src/desugaring.jl:2873  [44] expand_forms_2(ctx::Base.JuliaLowering.DesugaringContext{Dict{Symbol, Dict{Int64, Any}}}, ex::Base.JuliaSyntax.SyntaxTree{Dict{Symbol, Dict{Int64, Any}}}, docs::Nothing)  @ Base.JuliaLowering /source/usr/share/julia/JuliaLowering/src/desugaring.jl:4268  [45] getindex(ex::Base.JuliaSyntax.SyntaxTree{Dict{Symbol, Dict{Int64, Any}}}, i::Int64)  @ Base.JuliaSyntax /source/usr/share/julia/JuliaLowering/src/desugaring.jl:4152 [inlined]  [46] expand_assignment(ctx::Base.JuliaLowering.DesugaringContext{Dict{Symbol, Dict{Int64, Any}}}, ex::Base.JuliaSyntax.SyntaxTree{Dict{Symbol, Dict{Int64, Any}}}, is_const::Bool)  @ Base.JuliaLowering /source/usr/share/julia/JuliaLowering/src/desugaring.jl:1318  [47] _push_nodeid!(graph::Base.JuliaSyntax.SyntaxGraph{Dict{Symbol, Dict{Int64, Any}}}, ids::Vector{Int64}, val::Base.JuliaSyntax.SyntaxTree{Dict{Symbol, Dict{Int64, Any}}})  @ Base.JuliaLowering /source/usr/share/julia/JuliaLowering/src/desugaring.jl:1268 [inlined]  [48] expand_forms_2(ctx::Base.JuliaLowering.DesugaringContext{Dict{Symbol, Dict{Int64, Any}}}, ex::Base.JuliaSyntax.SyntaxTree{Dict{Symbol, Dict{Int64, Any}}}, docs::Nothing)  @ Base.JuliaLowering /source/usr/share/julia/JuliaLowering/src/desugaring.jl:4196  [49] expand_forms_2  @ /source/usr/share/julia/JuliaLowering/src/desugaring.jl:4152 [inlined]  [50] #expand_forms_2##2  @ /source/usr/share/julia/JuliaLowering/src/desugaring.jl:4440 [inlined]  [51] mapchildren(f::Base.JuliaLowering.var"#expand_forms_2##2#expand_forms_2##3"{Base.JuliaLowering.DesugaringContext{Dict{Symbol, Dict{Int64, Any}}}}, ctx::Base.JuliaLowering.DesugaringContext{Dict{Symbol, Dict{Int64, Any}}}, ex::Base.JuliaSyntax.SyntaxTree{Dict{Symbol, Dict{Int64, Any}}})  @ Base.JuliaSyntax /source/usr/share/julia/JuliaSyntax/src/porcelain/syntax_graph.jl:707  [52] expand_forms_2(ctx::Base.JuliaLowering.DesugaringContext{Dict{Symbol, Dict{Int64, Any}}}, ex::Base.JuliaSyntax.SyntaxTree{Dict{Symbol, Dict{Int64, Any}}}, docs::Nothing)  @ Base.JuliaLowering /source/usr/share/julia/JuliaLowering/src/desugaring.jl:4440  [53] Dict{Int64, Int64}()  @ Base /source/usr/share/julia/JuliaLowering/src/desugaring.jl:4152 [inlined]  [54] expand_forms_2(ctx::Base.JuliaLowering.MacroExpansionContext{Dict{Symbol, Dict{Int64, Any}}}, ex::Base.JuliaSyntax.SyntaxTree{Dict{Symbol, Dict{Int64, Any}}})  @ Base.JuliaLowering /source/usr/share/julia/JuliaLowering/src/desugaring.jl:4469  [55] core_lowering_hook(code::Any, mod::Module, file::String, line::UInt64, world::UInt64, _warn::Bool)  @ Base.JuliaLowering /source/usr/share/julia/JuliaLowering/src/hooks.jl:30  [56] include(mapexpr::Function, mod::Module, _path::String)  @ Base ./Base.jl:327  [57] top-level scope  @ ~/.julia/packages/Helium/LcQDp/src/Helium.jl:30  [58] include(mod::Module, _path::String)  @ Base ./Base.jl:326  [59] include_package_for_output(pkg::Base.PkgId, input::String, syntax_version::VersionNumber, depot_path::Vector{String}, dl_load_path::Vector{String}, load_path::Vector{String}, concrete_deps::Vector{Pair{Base.PkgId, UInt128}}, source::Nothing)  @ Base ./loading.jl:3271  [60] top-level scope  @ stdin:5  [61] eval(m::Module, e::Any)  @ Core ./boot.jl:517  [62] include_string(mapexpr::typeof(identity), mod::Module, code::String, filename::String)  @ Base ./loading.jl:3113  [63] push!(a::Vector{SubString{String}}, item::String)  @ Base ./loading.jl:3123 [inlined]  [64] exec_options(opts::Base.JLOptions)  @ Base ./client.jl:353  [65] _start()  @ Base ./client.jl:596 in expression starting at /home/pkgeval/.julia/packages/Helium/LcQDp/src/xtract.jl:1 in expression starting at /home/pkgeval/.julia/packages/Helium/LcQDp/src/Helium.jl:12 in expression starting at stdin:5 ✗ Helium 2.7 s ✓ JLLWrappers 2.9 s ✓ PrecompileTools 2.9 s ✓ Libiconv_jll 3.0 s ✓ Git_LFS_jll 3.0 s ✓ OpenSSH_jll 3.1 s ✓ Expat_jll 26.0 s ✓ Parsers 3.0 s ✓ Git_jll 94.0 s ✓ JSON 1.8 s ✓ Git 194.6 s ✓ Documenter 23 dependencies successfully precompiled in 550 seconds. 33 already precompiled. Precompilation completed after 585.06s ################################################################################ # Testing # Testing Helium Status `/tmp/jl_w9aWcC/Project.toml` [8bb1440f] DelimitedFiles v1.9.1 [e30172f5] Documenter v1.17.0 [3f79f04f] Helium v0.2.1 [8dfed614] Test v1.11.0 Status `/tmp/jl_w9aWcC/Manifest.toml` [a4c015fc] ANSIColoredPrinters v0.0.1 [1520ce14] AbstractTrees v0.4.5 [944b1d66] CodecZlib v0.7.8 [8bb1440f] DelimitedFiles v1.9.1 [ffbed154] DocStringExtensions v0.9.5 [e30172f5] Documenter v1.17.0 [d7ba0133] Git v1.5.0 [3f79f04f] Helium v0.2.1 [b5f81e59] IOCapture v1.0.0 [692b3bcd] JLLWrappers v1.8.0 [682c06a0] JSON v1.6.0 [0e77f7df] LazilyInitializedFields v1.3.0 [d0879d2d] MarkdownAST v0.1.3 [69de0a69] Parsers v2.8.4 [aea7be01] PrecompileTools v1.3.4 [21216c6a] Preferences v1.5.2 [2792f1a3] RegistryInstances v0.1.0 [ec057cc2] StructUtils v2.8.2 [3bb67fe8] TranscodingStreams v0.11.3 [2e619515] Expat_jll v2.8.0+0 [020c3dae] Git_LFS_jll v3.7.1+0 [f8c6e375] Git_jll v2.54.0+0 [94ce4f54] Libiconv_jll v1.18.0+0 [9bd350c2] OpenSSH_jll v10.3.1+0 [0dad84c5] ArgTools v1.1.2 [56f22d72] Artifacts v1.11.0 [2a0f44e3] Base64 v1.11.0 [ade2ca70] Dates v1.11.0 [f43a241f] Downloads v1.7.0 [7b1f6079] FileWatching v1.11.0 [b77e0a4c] InteractiveUtils v1.11.0 [ac6e5ff7] JuliaSyntaxHighlighting v1.13.0 [b27032c2] LibCURL v1.0.0 [76f85450] LibGit2 v1.11.0 [8f399da3] Libdl v1.11.0 [56ddb016] Logging v1.11.0 [d6f4376e] Markdown v1.11.0 [a63ad114] Mmap v1.11.0 [ca575930] NetworkOptions v1.3.0 [44cfe95a] Pkg v1.14.0 [de0858da] Printf v1.11.0 [3fa0cd96] REPL v1.11.0 [9a3f8284] Random v1.11.0 [ea8e919c] SHA v1.13.0 [9e88b42a] Serialization v1.11.0 [6462fe0b] Sockets v1.11.0 [f489334b] StyledStrings v1.13.0 [fa267f1f] TOML v1.0.3 [a4e569a6] Tar v1.10.0 [8dfed614] Test v1.11.0 [cf7118a7] UUIDs v1.11.0 [4ec0a83e] Unicode v1.11.0 [e66e0078] CompilerSupportLibraries_jll v1.5.1+0 [deac9b47] LibCURL_jll v8.20.0+1 [e37daf67] LibGit2_jll v1.9.3+0 [29816b5a] LibSSH2_jll v1.11.101+0 [14a3606d] MozillaCACerts_jll v2026.5.14 [458c3c95] OpenSSL_jll v3.5.6+0 [efcefdf7] PCRE2_jll v10.47.0+0 [83775a58] Zlib_jll v1.3.2+0 [3161d3a3] Zstd_jll v1.5.7+1 [8e850ede] nghttp2_jll v1.69.0+0 [3f19e933] p7zip_jll v17.8.0+0 Testing Running tests... ┌ Info: JuliaLowering threw given input: │ code = │ :(#= /home/pkgeval/.julia/packages/Helium/LcQDp/src/xtract.jl:1 =# Core.@doc "**`Helium.getmat`** -*Function*.\n\n `Helium.getmat(source, DataType, numRows::Int64, numCols::Int64,\n isHeader::Bool, isRowNames::BoolnumRows)` => `matrix, column names, row names`\n\nRead the data matrix and extract column and row names if they exist.\n\n" function getmat(he::HeAttributes) │ #= /home/pkgeval/.julia/packages/Helium/LcQDp/src/xtract.jl:10 =# │ #= /home/pkgeval/.julia/packages/Helium/LcQDp/src/xtract.jl:19 =# │ if he.hasColNames │ #= /home/pkgeval/.julia/packages/Helium/LcQDp/src/xtract.jl:20 =# │ he.numRows -= 1 │ end │ #= /home/pkgeval/.julia/packages/Helium/LcQDp/src/xtract.jl:23 =# │ if he.hasRowNames │ #= /home/pkgeval/.julia/packages/Helium/LcQDp/src/xtract.jl:24 =# │ he.numCols -= 1 │ end │ #= /home/pkgeval/.julia/packages/Helium/LcQDp/src/xtract.jl:32 =# │ mat = Array{he.matType}(undef, he.numRows, he.numCols) │ #= /home/pkgeval/.julia/packages/Helium/LcQDp/src/xtract.jl:33 =# │ if he.hasRowNames │ #= /home/pkgeval/.julia/packages/Helium/LcQDp/src/xtract.jl:34 =# │ rowNames = Array{String}(undef, he.numRows, 1) │ else │ #= /home/pkgeval/.julia/packages/Helium/LcQDp/src/xtract.jl:36 =# │ rowNames = [""] │ end │ #= /home/pkgeval/.julia/packages/Helium/LcQDp/src/xtract.jl:43 =# │ global i = 0 │ #= /home/pkgeval/.julia/packages/Helium/LcQDp/src/xtract.jl:44 =# │ open(he.fileName) do io │ #= /home/pkgeval/.julia/packages/Helium/LcQDp/src/xtract.jl:46 =# │ if he.hasColNames │ #= /home/pkgeval/.julia/packages/Helium/LcQDp/src/xtract.jl:47 =# │ global colNames = split(readline(io), he.sep) │ else │ #= /home/pkgeval/.julia/packages/Helium/LcQDp/src/xtract.jl:49 =# │ global colNames = [""] │ end │ #= /home/pkgeval/.julia/packages/Helium/LcQDp/src/xtract.jl:52 =# │ if he.hasRowNames │ #= /home/pkgeval/.julia/packages/Helium/LcQDp/src/xtract.jl:53 =# │ while !(eof(io)) │ #= /home/pkgeval/.julia/packages/Helium/LcQDp/src/xtract.jl:54 =# │ tmp = [readline(io)] │ #= /home/pkgeval/.julia/packages/Helium/LcQDp/src/xtract.jl:55 =# │ newLine = eval(Meta.parse(string("rslt=split(replace($(tmp)[1], r\"$(he.strMiss)|NA|MISSING\"i => \"NaN\"), \"$(he.sep)\")"))) │ #= /home/pkgeval/.julia/packages/Helium/LcQDp/src/xtract.jl:56 =# │ global i += 1 │ #= /home/pkgeval/.julia/packages/Helium/LcQDp/src/xtract.jl:57 =# │ global rowNames[i] = newLine[1] │ #= /home/pkgeval/.julia/packages/Helium/LcQDp/src/xtract.jl:58 =# │ global mat[i, :] = parse.(he.matType, newLine[2:var"end"]) │ #= /home/pkgeval/.julia/packages/Helium/LcQDp/src/xtract.jl:59 =# │ end │ #= /home/pkgeval/.julia/packages/Helium/LcQDp/src/xtract.jl:60 =# │ if he.hasColNames │ #= /home/pkgeval/.julia/packages/Helium/LcQDp/src/xtract.jl:61 =# │ colNames = colNames[2:var"end"] │ end │ else │ #= /home/pkgeval/.julia/packages/Helium/LcQDp/src/xtract.jl:64 =# │ while !(eof(io)) │ #= /home/pkgeval/.julia/packages/Helium/LcQDp/src/xtract.jl:65 =# │ tmp = [readline(io)] │ #= /home/pkgeval/.julia/packages/Helium/LcQDp/src/xtract.jl:66 =# │ newLine = eval(Meta.parse(string("rslt=split(replace($(tmp)[1], r\"$(he.strMiss)|NA|MISSING\"i => \"NaN\"), \"$(he.sep)\")"))) │ #= /home/pkgeval/.julia/packages/Helium/LcQDp/src/xtract.jl:67 =# │ global i += 1 │ #= /home/pkgeval/.julia/packages/Helium/LcQDp/src/xtract.jl:68 =# │ global mat[i, :] = parse.(he.matType, newLine[1:var"end"]) │ #= /home/pkgeval/.julia/packages/Helium/LcQDp/src/xtract.jl:69 =# │ end │ end │ end │ #= /home/pkgeval/.julia/packages/Helium/LcQDp/src/xtract.jl:73 =# │ return (mat, string.(colNames)[:], string.(rowNames)[:], ["" ""]) │ end) │ st0 = │ SyntaxTree with attributes mod,kind,var_id,toplevel_pure,scope_type,macro_source,name_val,syntax_flags,meta,scope_layer,value,jl_source,is_toplevel_thunk,source,__macro_ctx__ │ [macrocall] │ │ @doc :: Identifier │ mod │ :(#= /home/pkgeval/.julia/packages/Helium/LcQDp/src/xtract.jl:1 =#) :: Value │ │ "**`Helium.getmat`** -*Function*.\n\n `Helium.getmat(source, DataType, numRows::Int64, numCols::Int64,\n isHeader::Bool, isRowNames::BoolnumRows)` => `matrix, column names, row names`\n\nRead the data matrix and extract column and row names if they exist.\n\n" :: Value │ │ [function] │ │ [call] │ │ getmat :: Identifier │ │ [::] │ │ he :: Identifier │ │ HeAttributes :: Identifier │ │ [block] │ │ [if] │ │ [.] │ │ he :: Identifier │ │ [inert] │ │ hasColNames :: Identifier │ │ [block] │ │ [unknown_head] │ │ [.] │ │ he :: Identifier │ │ [inert] │ │ numRows :: Identifier │ │ 1 :: Value │ │ [if] │ │ [.] │ │ he :: Identifier │ │ [inert] │ │ hasRowNames :: Identifier │ │ [block] │ │ [unknown_head] │ │ [.] │ │ he :: Identifier │ │ [inert] │ │ numCols :: Identifier │ │ 1 :: Value │ │ [=] │ │ mat :: Identifier │ │ [call] │ │ [curly] │ │ Array :: Identifier │ │ [.] │ │ he :: Identifier │ │ [inert] │ │ matType :: Identifier │ │ undef :: Identifier │ │ [.] │ │ he :: Identifier │ │ [inert] │ │ numRows :: Identifier │ │ [.] │ │ he :: Identifier │ │ [inert] │ │ numCols :: Identifier │ │ [if] │ │ [.] │ │ he :: Identifier │ │ [inert] │ │ hasRowNames :: Identifier │ │ [block] │ │ [=] │ │ rowNames :: Identifier │ │ [call] │ │ [curly] │ │ Array :: Identifier │ │ String :: Identifier │ │ undef :: Identifier │ │ [.] │ │ he :: Identifier │ │ [inert] │ │ numRows :: Identifier │ │ 1 :: Value │ │ [block] │ │ [=] │ │ rowNames :: Identifier │ │ [vect] │ │ "" :: Value │ │ [global] │ │ [=] │ │ i :: Identifier │ │ 0 :: Value │ │ [do] │ │ [call] │ │ open :: Identifier │ │ [.] │ │ he :: Identifier │ │ [inert] │ │ fileName :: Identifier │ │ [->] │ │ [tuple] │ │ io :: Identifier │ │ [block] │ │ [if] │ │ [.] │ │ he :: Identifier │ │ [inert] │ │ hasColNames :: Identifier │ │ [block] │ │ [global] │ │ [=] │ │ colNames :: Identifier │ │ [call] │ │ split :: Identifier │ │ [call] │ │ readline :: Identifier │ │ io :: Identifier │ │ [.] │ │ he :: Identifier │ │ [inert] │ │ sep :: Identifier │ │ [block] │ │ [global] │ │ [=] │ │ colNames :: Identifier │ │ [vect] │ │ "" :: Value │ │ [if] │ │ [.] │ │ he :: Identifier │ │ [inert] │ │ hasRowNames :: Identifier │ │ [block] │ │ [while] │ │ [call] │ │ ! :: Identifier │ │ [call] │ │ eof :: Identifier │ │ io :: Identifier │ │ [block] │ │ [=] │ │ tmp :: Identifier │ │ [vect] │ │ [call] │ │ readline :: Identifier │ │ io :: Identifier │ │ [=] │ │ newLine :: Identifier │ │ [call] │ │ eval :: Identifier │ │ [call] │ │ [.] │ │ Meta :: Identifier │ │ [inert] │ │ parse :: Identifier │ │ [call] │ │ string :: Identifier │ │ [string] │ │ "rslt=split(replace(" :: Value │ │ tmp :: Identifier │ │ "[1], r\"" :: Value │ │ [.] │ │ he :: Identifier │ │ [inert] │ │ strMiss :: Identifier │ │ "|NA|MISSING\"i => \"NaN\"), \"" :: Value │ │ [.] │ │ he :: Identifier │ │ [inert] │ │ sep :: Identifier │ │ "\")" :: Value │ │ [global] │ │ [unknown_head] │ │ i :: Identifier │ │ 1 :: Value │ │ [global] │ │ [=] │ │ [ref] │ │ rowNames :: Identifier │ │ i :: Identifier │ │ [ref] │ │ newLine :: Identifier │ │ 1 :: Value │ │ [global] │ │ [=] │ │ [ref] │ │ mat :: Identifier │ │ i :: Identifier │ │ : :: Identifier │ │ [.] │ │ parse :: Identifier │ │ [tuple] │ │ [.] │ │ he :: Identifier │ │ [inert] │ │ matType :: Identifier │ │ [ref] │ │ newLine :: Identifier │ │ [call] │ │ : :: Identifier │ │ 2 :: Value │ │ end :: Identifier │ │ [if] │ │ [.] │ │ he :: Identifier │ │ [inert] │ │ hasColNames :: Identifier │ │ [block] │ │ [=] │ │ colNames :: Identifier │ │ [ref] │ │ colNames :: Identifier │ │ [call] │ │ : :: Identifier │ │ 2 :: Value │ │ end :: Identifier │ │ [block] │ │ [while] │ │ [call] │ │ ! :: Identifier │ │ [call] │ │ eof :: Identifier │ │ io :: Identifier │ │ [block] │ │ [=] │ │ tmp :: Identifier │ │ [vect] │ │ [call] │ │ readline :: Identifier │ │ io :: Identifier │ │ [=] │ │ newLine :: Identifier │ │ [call] │ │ eval :: Identifier │ │ [call] │ │ [.] │ │ Meta :: Identifier │ │ [inert] │ │ parse :: Identifier │ │ [call] │ │ string :: Identifier │ │ [string] │ │ "rslt=split(replace(" :: Value │ │ tmp :: Identifier │ │ "[1], r\"" :: Value │ │ [.] │ │ he :: Identifier │ │ [inert] │ │ strMiss :: Identifier │ │ "|NA|MISSING\"i => \"NaN\"), \"" :: Value │ │ [.] │ │ he :: Identifier │ │ [inert] │ │ sep :: Identifier │ │ "\")" :: Value │ │ [global] │ │ [unknown_head] │ │ i :: Identifier │ │ 1 :: Value │ │ [global] │ │ [=] │ │ [ref] │ │ mat :: Identifier │ │ i :: Identifier │ │ : :: Identifier │ │ [.] │ │ parse :: Identifier │ │ [tuple] │ │ [.] │ │ he :: Identifier │ │ [inert] │ │ matType :: Identifier │ │ [ref] │ │ newLine :: Identifier │ │ [call] │ │ : :: Identifier │ │ 1 :: Value │ │ end :: Identifier │ │ [return] │ │ [tuple] │ │ mat :: Identifier │ │ [ref] │ │ [.] │ │ string :: Identifier │ │ [tuple] │ │ colNames :: Identifier │ │ : :: Identifier │ │ [ref] │ │ [.] │ │ string :: Identifier │ │ [tuple] │ │ rowNames :: Identifier │ │ : :: Identifier │ │ [hcat] │ │ "" :: Value │ │ "" :: Value │ │ │ st1 = │ SyntaxTree with attributes mod,kind,var_id,toplevel_pure,scope_type,macro_source,name_val,syntax_flags,meta,scope_layer,value,jl_source,is_toplevel_thunk,source │ [block] │ │ [=] │ │ val :: Identifier │ scope_layer=3 │ [function] │ │ [call] │ │ getmat :: Identifier │ scope_layer=1 │ [::] │ │ he :: Identifier │ scope_layer=1 │ HeAttributes :: Identifier │ scope_layer=1 │ [block] │ │ [if] │ │ [.] │ │ he :: Identifier │ scope_layer=1 │ [inert] │ │ hasColNames :: Identifier │ │ [block] │ │ [unknown_head] │ scope_layer=1 │ [.] │ │ he :: Identifier │ scope_layer=1 │ [inert] │ │ numRows :: Identifier │ │ 1 :: Value │ macro_source=284 │ [if] │ │ [.] │ │ he :: Identifier │ scope_layer=1 │ [inert] │ │ hasRowNames :: Identifier │ │ [block] │ │ [unknown_head] │ scope_layer=1 │ [.] │ │ he :: Identifier │ scope_layer=1 │ [inert] │ │ numCols :: Identifier │ │ 1 :: Value │ macro_source=284 │ [=] │ │ mat :: Identifier │ scope_layer=1 │ [call] │ │ [curly] │ │ Array :: Identifier │ scope_layer=1 │ [.] │ │ he :: Identifier │ scope_layer=1 │ [inert] │ │ matType :: Identifier │ │ undef :: Identifier │ scope_layer=1 │ [.] │ │ he :: Identifier │ scope_layer=1 │ [inert] │ │ numRows :: Identifier │ │ [.] │ │ he :: Identifier │ scope_layer=1 │ [inert] │ │ numCols :: Identifier │ │ [if] │ │ [.] │ │ he :: Identifier │ scope_layer=1 │ [inert] │ │ hasRowNames :: Identifier │ │ [block] │ │ [=] │ │ rowNames :: Identifier │ scope_layer=1 │ [call] │ │ [curly] │ │ Array :: Identifier │ scope_layer=1 │ String :: Identifier │ scope_layer=1 │ undef :: Identifier │ scope_layer=1 │ [.] │ │ he :: Identifier │ scope_layer=1 │ [inert] │ │ numRows :: Identifier │ │ 1 :: Value │ macro_source=284 │ [block] │ │ [=] │ │ rowNames :: Identifier │ scope_layer=1 │ [vect] │ macro_source=284 │ "" :: Value │ macro_source=284 │ [global] │ │ [=] │ │ i :: Identifier │ scope_layer=1 │ 0 :: Value │ macro_source=284 │ [do] │ │ [call] │ │ open :: Identifier │ scope_layer=1 │ [.] │ │ he :: Identifier │ scope_layer=1 │ [inert] │ │ fileName :: Identifier │ │ [->] │ │ [tuple] │ │ io :: Identifier │ scope_layer=1 │ [block] │ │ [if] │ │ [.] │ │ he :: Identifier │ scope_layer=1 │ [inert] │ │ hasColNames :: Identifier │ │ [block] │ │ [global] │ │ [=] │ │ colNames :: Identifier │ scope_layer=1 │ [call] │ │ split :: Identifier │ scope_layer=1 │ [call] │ │ readline :: Identifier │ scope_layer=1 │ io :: Identifier │ scope_layer=1 │ [.] │ │ he :: Identifier │ scope_layer=1 │ [inert] │ │ sep :: Identifier │ │ [block] │ │ [global] │ │ [=] │ │ colNames :: Identifier │ scope_layer=1 │ [vect] │ macro_source=284 │ "" :: Value │ macro_source=284 │ [if] │ │ [.] │ │ he :: Identifier │ scope_layer=1 │ [inert] │ │ hasRowNames :: Identifier │ │ [block] │ │ [while] │ │ [call] │ │ ! :: Identifier │ scope_layer=1 │ [call] │ │ eof :: Identifier │ scope_layer=1 │ io :: Identifier │ scope_layer=1 │ [block] │ │ [=] │ │ tmp :: Identifier │ scope_layer=1 │ [vect] │ │ [call] │ │ readline :: Identifier │ scope_layer=1 │ io :: Identifier │ scope_layer=1 │ [=] │ │ newLine :: Identifier │ scope_layer=1 │ [call] │ │ eval :: Identifier │ scope_layer=1 │ [call] │ │ [.] │ │ Meta :: Identifier │ scope_layer=1 │ [inert] │ │ parse :: Identifier │ │ [call] │ │ string :: Identifier │ scope_layer=1 │ [string] │ │ "rslt=split(replace(" :: Value │ macro_source=284 │ tmp :: Identifier │ scope_layer=1 │ "[1], r\"" :: Value │ macro_source=284 │ [.] │ │ he :: Identifier │ scope_layer=1 │ [inert] │ │ strMiss :: Identifier │ │ "|NA|MISSING\"i => \"NaN\"), \"" :: Value │ macro_source=284 │ [.] │ │ he :: Identifier │ scope_layer=1 │ [inert] │ │ sep :: Identifier │ │ "\")" :: Value │ macro_source=284 │ [global] │ │ [unknown_head] │ scope_layer=1 │ i :: Identifier │ scope_layer=1 │ 1 :: Value │ macro_source=284 │ [global] │ │ [=] │ │ [ref] │ │ rowNames :: Identifier │ scope_layer=1 │ i :: Identifier │ scope_layer=1 │ [ref] │ │ newLine :: Identifier │ scope_layer=1 │ 1 :: Value │ macro_source=284 │ [global] │ │ [=] │ │ [ref] │ │ mat :: Identifier │ scope_layer=1 │ i :: Identifier │ scope_layer=1 │ : :: Identifier │ scope_layer=1 │ [.] │ │ parse :: Identifier │ scope_layer=1 │ [tuple] │ │ [.] │ │ he :: Identifier │ scope_layer=1 │ [inert] │ │ matType :: Identifier │ │ [ref] │ │ newLine :: Identifier │ scope_layer=1 │ [call] │ │ : :: Identifier │ scope_layer=1 │ 2 :: Value │ macro_source=284 │ end :: Identifier │ scope_layer=1 │ [if] │ │ [.] │ │ he :: Identifier │ scope_layer=1 │ [inert] │ │ hasColNames :: Identifier │ │ [block] │ │ [=] │ │ colNames :: Identifier │ scope_layer=1 │ [ref] │ │ colNames :: Identifier │ scope_layer=1 │ [call] │ │ : :: Identifier │ scope_layer=1 │ 2 :: Value │ macro_source=284 │ end :: Identifier │ scope_layer=1 │ [block] │ │ [while] │ │ [call] │ │ ! :: Identifier │ scope_layer=1 │ [call] │ │ eof :: Identifier │ scope_layer=1 │ io :: Identifier │ scope_layer=1 │ [block] │ │ [=] │ │ tmp :: Identifier │ scope_layer=1 │ [vect] │ │ [call] │ │ readline :: Identifier │ scope_layer=1 │ io :: Identifier │ scope_layer=1 │ [=] │ │ newLine :: Identifier │ scope_layer=1 │ [call] │ │ eval :: Identifier │ scope_layer=1 │ [call] │ │ [.] │ │ Meta :: Identifier │ scope_layer=1 │ [inert] │ │ parse :: Identifier │ │ [call] │ │ string :: Identifier │ scope_layer=1 │ [string] │ │ "rslt=split(replace(" :: Value │ macro_source=284 │ tmp :: Identifier │ scope_layer=1 │ "[1], r\"" :: Value │ macro_source=284 │ [.] │ │ he :: Identifier │ scope_layer=1 │ [inert] │ │ strMiss :: Identifier │ │ "|NA|MISSING\"i => \"NaN\"), \"" :: Value │ macro_source=284 │ [.] │ │ he :: Identifier │ scope_layer=1 │ [inert] │ │ sep :: Identifier │ │ "\")" :: Value │ macro_source=284 │ [global] │ │ [unknown_head] │ scope_layer=1 │ i :: Identifier │ scope_layer=1 │ 1 :: Value │ macro_source=284 │ [global] │ │ [=] │ │ [ref] │ │ mat :: Identifier │ scope_layer=1 │ i :: Identifier │ scope_layer=1 │ : :: Identifier │ scope_layer=1 │ [.] │ │ parse :: Identifier │ scope_layer=1 │ [tuple] │ │ [.] │ │ he :: Identifier │ scope_layer=1 │ [inert] │ │ matType :: Identifier │ │ [ref] │ │ newLine :: Identifier │ scope_layer=1 │ [call] │ │ : :: Identifier │ scope_layer=1 │ 1 :: Value │ macro_source=284 │ end :: Identifier │ scope_layer=1 │ [return] │ │ [tuple] │ │ mat :: Identifier │ scope_layer=1 │ [ref] │ │ [.] │ │ string :: Identifier │ scope_layer=1 │ [tuple] │ │ colNames :: Identifier │ scope_layer=1 │ : :: Identifier │ scope_layer=1 │ [ref] │ │ [.] │ │ string :: Identifier │ scope_layer=1 │ [tuple] │ │ rowNames :: Identifier │ scope_layer=1 │ : :: Identifier │ scope_layer=1 │ [hcat] │ macro_source=284 │ "" :: Value │ macro_source=284 │ "" :: Value │ macro_source=284 │ [call] │ │ Base.Docs.doc! :: Value │ macro_source=284 │ Helium :: Value │ macro_source=284 │ [call] │ │ Base.Docs.Binding :: Value │ macro_source=284 │ Helium :: Value │ │ [inert] │ jl_source=L65 │ getmat :: Identifier │ │ [call] │ macro_source=284 │ Base.Docs.docstr :: Value │ macro_source=284 │ [call] │ macro_source=284 │ Core.svec :: Value │ macro_source=284 │ "**`Helium.getmat`** -*Function*.\n\n `Helium.getmat(source, DataType, numRows::Int64, numCols::Int64,\n isHeader::Bool, isRowNames::BoolnumRows)` => `matrix, column names, row names`\n\nRead the data matrix and extract column and row names if they exist.\n\n" :: Value │ macro_source=284 │ [call] │ macro_source=284 │ Dict{Symbol, Any} :: Value │ macro_source=284 │ :path => "/home/pkgeval/.julia/packages/Helium/LcQDp/src/xtract.jl" :: Value │ macro_source=284 │ :linenumber => 1 :: Value │ macro_source=284 │ :module => Helium :: Value │ macro_source=284 │ [curly] │ │ Union :: Identifier │ scope_layer=1 │ [curly] │ │ Tuple :: Identifier │ scope_layer=1 │ HeAttributes :: Identifier │ scope_layer=1 │ val :: Identifier │ scope_layer=3 │ │ file = "/home/pkgeval/.julia/packages/Helium/LcQDp/src/xtract.jl" │ line = 1 └ mod = Helium ERROR: LoadError: No match found for `(ref rowNames i)` at #= /source/usr/share/julia/JuliaLowering/src/desugaring.jl:2184 =# Stacktrace:  [1] make_lhs_decls(ctx::Base.JuliaLowering.DesugaringContext{Dict{Symbol, Dict{Int64, Any}}}, stmts::Base.JuliaSyntax.SyntaxList{Dict{Symbol, Dict{Int64, Any}}, Vector{Int64}}, declkind::Base.JuliaSyntax.Kind, declmeta::Nothing, ex::Base.JuliaSyntax.SyntaxTree{Dict{Symbol, Dict{Int64, Any}}}, type_decls::Bool)  @ Base.JuliaLowering /source/usr/share/julia/JuliaLowering/src/desugaring.jl:2184  [2] expand_decls(ctx::Base.JuliaLowering.DesugaringContext{Dict{Symbol, Dict{Int64, Any}}}, ex::Base.JuliaSyntax.SyntaxTree{Dict{Symbol, Dict{Int64, Any}}})  @ Base.JuliaLowering /source/usr/share/julia/JuliaLowering/src/desugaring.jl:2212  [3] expand_forms_2(ctx::Base.JuliaLowering.DesugaringContext{Dict{Symbol, Dict{Int64, Any}}}, ex::Base.JuliaSyntax.SyntaxTree{Dict{Symbol, Dict{Int64, Any}}}, docs::Nothing)  @ Base.JuliaLowering /source/usr/share/julia/JuliaLowering/src/desugaring.jl:4297  [4] expand_forms_2  @ /source/usr/share/julia/JuliaLowering/src/desugaring.jl:4152 [inlined]  [5] #expand_forms_2##2  @ /source/usr/share/julia/JuliaLowering/src/desugaring.jl:4440 [inlined]  [6] mapchildren(f::Base.JuliaLowering.var"#expand_forms_2##2#expand_forms_2##3"{Base.JuliaLowering.DesugaringContext{Dict{Symbol, Dict{Int64, Any}}}}, ctx::Base.JuliaLowering.DesugaringContext{Dict{Symbol, Dict{Int64, Any}}}, ex::Base.JuliaSyntax.SyntaxTree{Dict{Symbol, Dict{Int64, Any}}})  @ Base.JuliaSyntax /source/usr/share/julia/JuliaSyntax/src/porcelain/syntax_graph.jl:707  [7] expand_forms_2(ctx::Base.JuliaLowering.DesugaringContext{Dict{Symbol, Dict{Int64, Any}}}, ex::Base.JuliaSyntax.SyntaxTree{Dict{Symbol, Dict{Int64, Any}}}, docs::Nothing)  @ Base.JuliaLowering /source/usr/share/julia/JuliaLowering/src/desugaring.jl:4440  [8] child(graph::Base.JuliaSyntax.SyntaxGraph{Dict{Symbol, Dict{Int64, Any}}}, id::Int64, i::Int64)  @ Base.JuliaSyntax /source/usr/share/julia/JuliaLowering/src/desugaring.jl:4152 [inlined]  [9] getindex(ex::Base.JuliaSyntax.SyntaxTree{Dict{Symbol, Dict{Int64, Any}}}, i::Int64)  @ Base.JuliaSyntax /source/usr/share/julia/JuliaLowering/src/ast.jl:355 [inlined]  [10] expand_forms_2(ctx::Base.JuliaLowering.DesugaringContext{Dict{Symbol, Dict{Int64, Any}}}, ex::Base.JuliaSyntax.SyntaxTree{Dict{Symbol, Dict{Int64, Any}}}, docs::Nothing)  @ Base.JuliaLowering /source/usr/share/julia/JuliaLowering/src/desugaring.jl:4387  [11] expand_forms_2  @ /source/usr/share/julia/JuliaLowering/src/desugaring.jl:4152 [inlined]  [12] #expand_forms_2##2  @ /source/usr/share/julia/JuliaLowering/src/desugaring.jl:4440 [inlined]  [13] mapchildren(f::Base.JuliaLowering.var"#expand_forms_2##2#expand_forms_2##3"{Base.JuliaLowering.DesugaringContext{Dict{Symbol, Dict{Int64, Any}}}}, ctx::Base.JuliaLowering.DesugaringContext{Dict{Symbol, Dict{Int64, Any}}}, ex::Base.JuliaSyntax.SyntaxTree{Dict{Symbol, Dict{Int64, Any}}})  @ Base.JuliaSyntax /source/usr/share/julia/JuliaSyntax/src/porcelain/syntax_graph.jl:707  [14] expand_forms_2(ctx::Base.JuliaLowering.DesugaringContext{Dict{Symbol, Dict{Int64, Any}}}, ex::Base.JuliaSyntax.SyntaxTree{Dict{Symbol, Dict{Int64, Any}}}, docs::Nothing)  @ Base.JuliaLowering /source/usr/share/julia/JuliaLowering/src/desugaring.jl:4440  [15] iterate(A::Base.JuliaSyntax.SyntaxList{Dict{Symbol, Dict{Int64, Any}}, SubArray{Int64, 1, Vector{Int64}, Tuple{UnitRange{Int64}}, true}})  @ Base /source/usr/share/julia/JuliaLowering/src/desugaring.jl:4152 [inlined]  [16] expand_forms_2(ctx::Base.JuliaLowering.DesugaringContext{Dict{Symbol, Dict{Int64, Any}}}, exs::Base.JuliaSyntax.SyntaxList{Dict{Symbol, Dict{Int64, Any}}, SubArray{Int64, 1, Vector{Int64}, Tuple{UnitRange{Int64}}, true}})  @ Base.JuliaLowering /source/usr/share/julia/JuliaLowering/src/desugaring.jl:4447  [17] getindex(ex::Base.JuliaSyntax.SyntaxTree{Dict{Symbol, Dict{Int64, Any}}}, i::Int64)  @ Base.JuliaSyntax /source/usr/share/julia/JuliaLowering/src/ast.jl:355 [inlined]  [18] expand_forms_2(ctx::Base.JuliaLowering.DesugaringContext{Dict{Symbol, Dict{Int64, Any}}}, ex::Base.JuliaSyntax.SyntaxTree{Dict{Symbol, Dict{Int64, Any}}}, docs::Nothing)  @ Base.JuliaLowering /source/usr/share/julia/JuliaLowering/src/desugaring.jl:4288  [19] expand_forms_2  @ /source/usr/share/julia/JuliaLowering/src/desugaring.jl:4152 [inlined]  [20] #expand_forms_2##2  @ /source/usr/share/julia/JuliaLowering/src/desugaring.jl:4440 [inlined]  [21] mapchildren(f::Base.JuliaLowering.var"#expand_forms_2##2#expand_forms_2##3"{Base.JuliaLowering.DesugaringContext{Dict{Symbol, Dict{Int64, Any}}}}, ctx::Base.JuliaLowering.DesugaringContext{Dict{Symbol, Dict{Int64, Any}}}, ex::Base.JuliaSyntax.SyntaxTree{Dict{Symbol, Dict{Int64, Any}}})  @ Base.JuliaSyntax /source/usr/share/julia/JuliaSyntax/src/porcelain/syntax_graph.jl:707  [22] expand_forms_2(ctx::Base.JuliaLowering.DesugaringContext{Dict{Symbol, Dict{Int64, Any}}}, ex::Base.JuliaSyntax.SyntaxTree{Dict{Symbol, Dict{Int64, Any}}}, docs::Nothing)  @ Base.JuliaLowering /source/usr/share/julia/JuliaLowering/src/desugaring.jl:4440  [23] _node_id(graph::Base.JuliaSyntax.SyntaxGraph{Dict{Symbol, Dict{Int64, Any}}}, ex::Base.JuliaSyntax.SyntaxTree{Dict{Symbol, Dict{Int64, Any}}})  @ Base.JuliaLowering /source/usr/share/julia/JuliaLowering/src/desugaring.jl:4152 [inlined]  [24] _push_nodeid!(graph::Base.JuliaSyntax.SyntaxGraph{Dict{Symbol, Dict{Int64, Any}}}, ids::Vector{Int64}, val::Base.JuliaSyntax.SyntaxTree{Dict{Symbol, Dict{Int64, Any}}})  @ Base.JuliaLowering /source/usr/share/julia/JuliaLowering/src/ast.jl:288 [inlined]  [25] method_def_expr(ctx::Base.JuliaLowering.DesugaringContext{Dict{Symbol, Dict{Int64, Any}}}, src::Base.JuliaSyntax.SyntaxTree{Dict{Symbol, Dict{Int64, Any}}}, mtable::Base.JuliaSyntax.SyntaxTree{Dict{Symbol, Dict{Int64, Any}}}, sparams::Base.JuliaSyntax.SyntaxList{Dict{Symbol, Dict{Int64, Any}}, Vector{Int64}}, argl::Base.JuliaSyntax.SyntaxList{Dict{Symbol, Dict{Int64, Any}}, Vector{Int64}}, body::Base.JuliaSyntax.SyntaxTree{Dict{Symbol, Dict{Int64, Any}}}, rett::Base.JuliaSyntax.SyntaxTree{Dict{Symbol, Dict{Int64, Any}}})  @ Base.JuliaLowering /source/usr/share/julia/JuliaLowering/src/desugaring.jl:2419  [26] (::Colon)(start::Int64, stop::Int64)  @ Base /source/usr/share/julia/JuliaLowering/src/ast.jl:355 [inlined]  [27] expand_function_def(ctx::Base.JuliaLowering.DesugaringContext{Dict{Symbol, Dict{Int64, Any}}}, src::Base.JuliaSyntax.SyntaxTree{Dict{Symbol, Dict{Int64, Any}}}, raw_args::Base.JuliaSyntax.SyntaxList{Dict{Symbol, Dict{Int64, Any}}, Vector{Int64}}, wheres::Base.JuliaSyntax.SyntaxList{Dict{Symbol, Dict{Int64, Any}}, Vector{Int64}}, body::Base.JuliaSyntax.SyntaxTree{Dict{Symbol, Dict{Int64, Any}}}, rett::Base.JuliaSyntax.SyntaxTree{Dict{Symbol, Dict{Int64, Any}}})  @ Base.JuliaLowering /source/usr/share/julia/JuliaLowering/src/desugaring.jl:2873  [28] getindex(ex::Base.JuliaSyntax.SyntaxTree{Dict{Symbol, Dict{Int64, Any}}}, i::Int64)  @ Base.JuliaSyntax /source/usr/share/julia/JuliaLowering/src/ast.jl:355 [inlined]  [29] expand_forms_2(ctx::Base.JuliaLowering.DesugaringContext{Dict{Symbol, Dict{Int64, Any}}}, ex::Base.JuliaSyntax.SyntaxTree{Dict{Symbol, Dict{Int64, Any}}}, docs::Nothing)  @ Base.JuliaLowering /source/usr/share/julia/JuliaLowering/src/desugaring.jl:4276  [30] iterate(A::Base.JuliaSyntax.SyntaxList{Dict{Symbol, Dict{Int64, Any}}, Vector{Int64}})  @ Base /source/usr/share/julia/JuliaLowering/src/desugaring.jl:4152 [inlined]  [31] expand_forms_2(ctx::Base.JuliaLowering.DesugaringContext{Dict{Symbol, Dict{Int64, Any}}}, exs::Base.JuliaSyntax.SyntaxList{Dict{Symbol, Dict{Int64, Any}}, Vector{Int64}})  @ Base.JuliaLowering /source/usr/share/julia/JuliaLowering/src/desugaring.jl:4447  [32] _push_nodeid!(graph::Base.JuliaSyntax.SyntaxGraph{Dict{Symbol, Dict{Int64, Any}}}, ids::Vector{Int64}, val::Base.JuliaSyntax.SyntaxTree{Dict{Symbol, Dict{Int64, Any}}})  @ Base.JuliaLowering /source/usr/share/julia/JuliaLowering/src/ast.jl:355 [inlined]  [33] expand_call(ctx::Base.JuliaLowering.DesugaringContext{Dict{Symbol, Dict{Int64, Any}}}, ex::Base.JuliaSyntax.SyntaxTree{Dict{Symbol, Dict{Int64, Any}}})  @ Base.JuliaLowering /source/usr/share/julia/JuliaLowering/src/desugaring.jl:1941  [34] expand_forms_2(ctx::Base.JuliaLowering.DesugaringContext{Dict{Symbol, Dict{Int64, Any}}}, ex::Base.JuliaSyntax.SyntaxTree{Dict{Symbol, Dict{Int64, Any}}}, docs::Nothing)  @ Base.JuliaLowering /source/usr/share/julia/JuliaLowering/src/desugaring.jl:4156  [35] expand_forms_2  @ /source/usr/share/julia/JuliaLowering/src/desugaring.jl:4152 [inlined]  [36] #expand_forms_2##2  @ /source/usr/share/julia/JuliaLowering/src/desugaring.jl:4440 [inlined]  [37] mapchildren(f::Base.JuliaLowering.var"#expand_forms_2##2#expand_forms_2##3"{Base.JuliaLowering.DesugaringContext{Dict{Symbol, Dict{Int64, Any}}}}, ctx::Base.JuliaLowering.DesugaringContext{Dict{Symbol, Dict{Int64, Any}}}, ex::Base.JuliaSyntax.SyntaxTree{Dict{Symbol, Dict{Int64, Any}}})  @ Base.JuliaSyntax /source/usr/share/julia/JuliaSyntax/src/porcelain/syntax_graph.jl:707  [38] expand_forms_2(ctx::Base.JuliaLowering.DesugaringContext{Dict{Symbol, Dict{Int64, Any}}}, ex::Base.JuliaSyntax.SyntaxTree{Dict{Symbol, Dict{Int64, Any}}}, docs::Nothing)  @ Base.JuliaLowering /source/usr/share/julia/JuliaLowering/src/desugaring.jl:4440  [39] _node_id(graph::Base.JuliaSyntax.SyntaxGraph{Dict{Symbol, Dict{Int64, Any}}}, ex::Base.JuliaSyntax.SyntaxTree{Dict{Symbol, Dict{Int64, Any}}})  @ Base.JuliaLowering /source/usr/share/julia/JuliaLowering/src/desugaring.jl:4152 [inlined]  [40] _push_nodeid!(graph::Base.JuliaSyntax.SyntaxGraph{Dict{Symbol, Dict{Int64, Any}}}, ids::Vector{Int64}, val::Base.JuliaSyntax.SyntaxTree{Dict{Symbol, Dict{Int64, Any}}})  @ Base.JuliaLowering /source/usr/share/julia/JuliaLowering/src/ast.jl:288 [inlined]  [41] method_def_expr(ctx::Base.JuliaLowering.DesugaringContext{Dict{Symbol, Dict{Int64, Any}}}, src::Base.JuliaSyntax.SyntaxTree{Dict{Symbol, Dict{Int64, Any}}}, mtable::Base.JuliaSyntax.SyntaxTree{Dict{Symbol, Dict{Int64, Any}}}, sparams::Base.JuliaSyntax.SyntaxList{Dict{Symbol, Dict{Int64, Any}}, Vector{Int64}}, argl::Base.JuliaSyntax.SyntaxList{Dict{Symbol, Dict{Int64, Any}}, Vector{Int64}}, body::Base.JuliaSyntax.SyntaxTree{Dict{Symbol, Dict{Int64, Any}}}, rett::Base.JuliaSyntax.SyntaxTree{Dict{Symbol, Dict{Int64, Any}}})  @ Base.JuliaLowering /source/usr/share/julia/JuliaLowering/src/desugaring.jl:2419  [42] (::Colon)(start::Int64, stop::Int64)  @ Base /source/usr/share/julia/JuliaLowering/src/ast.jl:355 [inlined]  [43] expand_function_def(ctx::Base.JuliaLowering.DesugaringContext{Dict{Symbol, Dict{Int64, Any}}}, src::Base.JuliaSyntax.SyntaxTree{Dict{Symbol, Dict{Int64, Any}}}, raw_args::Base.JuliaSyntax.SyntaxList{Dict{Symbol, Dict{Int64, Any}}, Vector{Int64}}, wheres::Base.JuliaSyntax.SyntaxList{Dict{Symbol, Dict{Int64, Any}}, Vector{Int64}}, body::Base.JuliaSyntax.SyntaxTree{Dict{Symbol, Dict{Int64, Any}}}, rett::Base.JuliaSyntax.SyntaxTree{Dict{Symbol, Dict{Int64, Any}}})  @ Base.JuliaLowering /source/usr/share/julia/JuliaLowering/src/desugaring.jl:2873  [44] expand_forms_2(ctx::Base.JuliaLowering.DesugaringContext{Dict{Symbol, Dict{Int64, Any}}}, ex::Base.JuliaSyntax.SyntaxTree{Dict{Symbol, Dict{Int64, Any}}}, docs::Nothing)  @ Base.JuliaLowering /source/usr/share/julia/JuliaLowering/src/desugaring.jl:4268  [45] getindex(ex::Base.JuliaSyntax.SyntaxTree{Dict{Symbol, Dict{Int64, Any}}}, i::Int64)  @ Base.JuliaSyntax /source/usr/share/julia/JuliaLowering/src/desugaring.jl:4152 [inlined]  [46] expand_assignment(ctx::Base.JuliaLowering.DesugaringContext{Dict{Symbol, Dict{Int64, Any}}}, ex::Base.JuliaSyntax.SyntaxTree{Dict{Symbol, Dict{Int64, Any}}}, is_const::Bool)  @ Base.JuliaLowering /source/usr/share/julia/JuliaLowering/src/desugaring.jl:1318  [47] _push_nodeid!(graph::Base.JuliaSyntax.SyntaxGraph{Dict{Symbol, Dict{Int64, Any}}}, ids::Vector{Int64}, val::Base.JuliaSyntax.SyntaxTree{Dict{Symbol, Dict{Int64, Any}}})  @ Base.JuliaLowering /source/usr/share/julia/JuliaLowering/src/desugaring.jl:1268 [inlined]  [48] expand_forms_2(ctx::Base.JuliaLowering.DesugaringContext{Dict{Symbol, Dict{Int64, Any}}}, ex::Base.JuliaSyntax.SyntaxTree{Dict{Symbol, Dict{Int64, Any}}}, docs::Nothing)  @ Base.JuliaLowering /source/usr/share/julia/JuliaLowering/src/desugaring.jl:4196  [49] expand_forms_2  @ /source/usr/share/julia/JuliaLowering/src/desugaring.jl:4152 [inlined]  [50] #expand_forms_2##2  @ /source/usr/share/julia/JuliaLowering/src/desugaring.jl:4440 [inlined]  [51] mapchildren(f::Base.JuliaLowering.var"#expand_forms_2##2#expand_forms_2##3"{Base.JuliaLowering.DesugaringContext{Dict{Symbol, Dict{Int64, Any}}}}, ctx::Base.JuliaLowering.DesugaringContext{Dict{Symbol, Dict{Int64, Any}}}, ex::Base.JuliaSyntax.SyntaxTree{Dict{Symbol, Dict{Int64, Any}}})  @ Base.JuliaSyntax /source/usr/share/julia/JuliaSyntax/src/porcelain/syntax_graph.jl:707  [52] expand_forms_2(ctx::Base.JuliaLowering.DesugaringContext{Dict{Symbol, Dict{Int64, Any}}}, ex::Base.JuliaSyntax.SyntaxTree{Dict{Symbol, Dict{Int64, Any}}}, docs::Nothing)  @ Base.JuliaLowering /source/usr/share/julia/JuliaLowering/src/desugaring.jl:4440  [53] Dict{Int64, Int64}()  @ Base /source/usr/share/julia/JuliaLowering/src/desugaring.jl:4152 [inlined]  [54] expand_forms_2(ctx::Base.JuliaLowering.MacroExpansionContext{Dict{Symbol, Dict{Int64, Any}}}, ex::Base.JuliaSyntax.SyntaxTree{Dict{Symbol, Dict{Int64, Any}}})  @ Base.JuliaLowering /source/usr/share/julia/JuliaLowering/src/desugaring.jl:4469  [55] core_lowering_hook(code::Any, mod::Module, file::String, line::UInt64, world::UInt64, _warn::Bool)  @ Base.JuliaLowering /source/usr/share/julia/JuliaLowering/src/hooks.jl:30  [56] include(mapexpr::Function, mod::Module, _path::String)  @ Base ./Base.jl:327  [57] top-level scope  @ ~/.julia/packages/Helium/LcQDp/src/Helium.jl:30  [58] include(mod::Module, _path::String)  @ Base ./Base.jl:326  [59] include_package_for_output(pkg::Base.PkgId, input::String, syntax_version::VersionNumber, depot_path::Vector{String}, dl_load_path::Vector{String}, load_path::Vector{String}, concrete_deps::Vector{Pair{Base.PkgId, UInt128}}, source::Nothing)  @ Base ./loading.jl:3271  [60] top-level scope  @ stdin:5  [61] eval(m::Module, e::Any)  @ Core ./boot.jl:517  [62] include_string(mapexpr::typeof(identity), mod::Module, code::String, filename::String)  @ Base ./loading.jl:3113  [63] push!(a::Vector{SubString{String}}, item::String)  @ Base ./loading.jl:3123 [inlined]  [64] exec_options(opts::Base.JLOptions)  @ Base ./client.jl:353  [65] _start()  @ Base ./client.jl:596 in expression starting at /home/pkgeval/.julia/packages/Helium/LcQDp/src/xtract.jl:1 in expression starting at /home/pkgeval/.julia/packages/Helium/LcQDp/src/Helium.jl:12 in expression starting at stdin:5 1 dependency had output during precompilation: ┌ Helium │ [Output was shown above] └ ERROR: LoadError: The following 1 package failed to precompile: Helium Failed to precompile Helium [3f79f04f-7cac-48b4-bde1-3ad54d8f74fa] to "/home/pkgeval/.julia/compiled/v1.14/Helium/jl_6JVHVZ" (ProcessExited(1)). in expression starting at /home/pkgeval/.julia/packages/Helium/LcQDp/test/runtests.jl:1 Testing failed after 21.91s ERROR: LoadError: Package Helium errored during testing Stacktrace: [1] pkgerror(msg::String) @ Pkg.Types /opt/julia/share/julia/stdlib/v1.14/Pkg/src/Types.jl:68 [2] test(ctx::Pkg.Types.Context, pkgs::Vector{PackageSpec}; coverage::Bool, julia_args::Cmd, test_args::Cmd, test_fn::Nothing, force_latest_compatible_version::Bool, allow_earlier_backwards_compatible_versions::Bool, allow_reresolve::Bool) @ Pkg.Operations /opt/julia/share/julia/stdlib/v1.14/Pkg/src/Operations.jl:3247 [3] Cmd(cmd::Cmd) @ Base /opt/julia/share/julia/stdlib/v1.14/Pkg/src/Operations.jl:3110 [inlined] [4] test(ctx::Pkg.Types.Context, pkgs::Vector{PackageSpec}; coverage::Bool, test_fn::Nothing, julia_args::Cmd, test_args::Cmd, force_latest_compatible_version::Bool, allow_earlier_backwards_compatible_versions::Bool, allow_reresolve::Bool, kwargs::@Kwargs{io::IOContext{IO}}) @ Pkg.API /opt/julia/share/julia/stdlib/v1.14/Pkg/src/API.jl:587 [5] test(pkgs::Vector{PackageSpec}; io::IOContext{IO}, kwargs::@Kwargs{julia_args::Cmd}) @ Pkg.API /opt/julia/share/julia/stdlib/v1.14/Pkg/src/API.jl:172 [6] test(pkgs::Vector{String}; kwargs::@Kwargs{julia_args::Cmd}) @ Pkg.API /opt/julia/share/julia/stdlib/v1.14/Pkg/src/API.jl:160 [7] test @ /opt/julia/share/julia/stdlib/v1.14/Pkg/src/API.jl:160 [inlined] [8] test(pkg::String; kwargs::@Kwargs{julia_args::Cmd}) @ Pkg.API /opt/julia/share/julia/stdlib/v1.14/Pkg/src/API.jl:159 [inlined] [9] top-level scope @ /PkgEval.jl/scripts/evaluate.jl:223 [10] include(mod::Module, _path::String) @ Base ./Base.jl:326 [11] exec_options(opts::Base.JLOptions) @ Base ./client.jl:355 [12] _start() @ Base ./client.jl:596 in expression starting at /PkgEval.jl/scripts/evaluate.jl:214 PkgEval failed after 653.08s: package fails to precompile