Package evaluation to test Helium on Julia 1.14.0-DEV.2309 (6e1a27e459*) started at 2026-06-06T03:10:17.336 ################################################################################ # Set-up # Installing PkgEval dependencies (TestEnv)... Activating project at `~/.julia/environments/v1.14` Set-up completed after 17.46s ################################################################################ # 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.75s ################################################################################ # Precompilation # Precompiling PkgEval dependencies... Precompiling project... 6.5 s ✓ TestEnv 1 dependency successfully precompiled in 7 seconds. 27 already precompiled. Precompiling package dependencies... Precompiling project... 1.3 s ✓ ANSIColoredPrinters 1.0 s ✓ LazilyInitializedFields 1.2 s ✓ DocStringExtensions 73.9 s ✓ AbstractTrees 54.4 s ✓ TranscodingStreams 0.8 s ✓ IOCapture 1.0 s ✓ DelimitedFiles 3.2 s ✓ StructUtils 3.0 s ✓ Preferences 7.8 s ✓ RegistryInstances 21.4 s ✓ MarkdownAST 20.3 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:2182 =# 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:2182  [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:2210  [3] getproperty(x::Base.JuliaLowering.DesugaringContext{Dict{Symbol, Dict{Int64, Any}}}, f::Symbol)  @ Base Base_compiler.jl:58 [inlined]  [4] syntax_graph(ctx::Base.JuliaLowering.DesugaringContext{Dict{Symbol, Dict{Int64, Any}}})  @ Base.JuliaLowering /source/usr/share/julia/JuliaLowering/src/ast.jl:45 [inlined]  [5] macro expansion  @ /source/usr/share/julia/JuliaLowering/src/ast.jl:357 [inlined]  [6] 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:4269  [7] expand_forms_2(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:4133 [inlined]  [8] (::Base.JuliaLowering.var"#expand_forms_2##2#expand_forms_2##3"{Base.JuliaLowering.DesugaringContext{Dict{Symbol, Dict{Int64, Any}}}})(e::Base.JuliaSyntax.SyntaxTree{Dict{Symbol, Dict{Int64, Any}}})  @ Base.JuliaLowering /source/usr/share/julia/JuliaLowering/src/desugaring.jl:4421 [inlined]  [9] 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  [10] getindex(A::Vector{UnitRange{Int64}}, i::Int64)  @ Base essentials.jl:1040 [inlined]  [11] numchildren(graph::Base.JuliaSyntax.SyntaxGraph{Dict{Symbol, Dict{Int64, Any}}}, id::Int64)  @ Base.JuliaSyntax /source/usr/share/julia/JuliaSyntax/src/porcelain/syntax_graph.jl:121 [inlined]  [12] numchildren(ex::Base.JuliaSyntax.SyntaxTree{Dict{Symbol, Dict{Int64, Any}}})  @ Base.JuliaSyntax /source/usr/share/julia/JuliaSyntax/src/porcelain/syntax_graph.jl:306 [inlined]  [13] 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  [14] macro expansion  @ /source/usr/share/julia/JuliaLowering/src/ast.jl:357 [inlined]  [15] 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:4368  [16] expand_forms_2(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:4133 [inlined]  [17] (::Base.JuliaLowering.var"#expand_forms_2##2#expand_forms_2##3"{Base.JuliaLowering.DesugaringContext{Dict{Symbol, Dict{Int64, Any}}}})(e::Base.JuliaSyntax.SyntaxTree{Dict{Symbol, Dict{Int64, Any}}})  @ Base.JuliaLowering /source/usr/share/julia/JuliaLowering/src/desugaring.jl:4421 [inlined]  [18] 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  [19] getindex(A::Vector{UnitRange{Int64}}, i::Int64)  @ Base essentials.jl:1040 [inlined]  [20] numchildren(graph::Base.JuliaSyntax.SyntaxGraph{Dict{Symbol, Dict{Int64, Any}}}, id::Int64)  @ Base.JuliaSyntax /source/usr/share/julia/JuliaSyntax/src/porcelain/syntax_graph.jl:121 [inlined]  [21] numchildren(ex::Base.JuliaSyntax.SyntaxTree{Dict{Symbol, Dict{Int64, Any}}})  @ Base.JuliaSyntax /source/usr/share/julia/JuliaSyntax/src/porcelain/syntax_graph.jl:306 [inlined]  [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:4268  [23] 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:4428  [24] length(a::Vector{Int64})  @ Base essentials.jl:1255 [inlined]  [25] append!(a::Vector{Int64}, items::Vector{Int64})  @ Base array.jl:1440 [inlined]  [26] _append_nodeids!(graph::Base.JuliaSyntax.SyntaxGraph{Dict{Symbol, Dict{Int64, Any}}}, ids::Vector{Int64}, vals::Base.JuliaSyntax.SyntaxList{Dict{Symbol, Dict{Int64, Any}}, Vector{Int64}})  @ Base.JuliaLowering /source/usr/share/julia/JuliaLowering/src/ast.jl:187 [inlined]  [27] macro expansion  @ /source/usr/share/julia/JuliaLowering/src/ast.jl:357 [inlined]  [28] 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:4269  [29] expand_forms_2(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:4133 [inlined]  [30] (::Base.JuliaLowering.var"#expand_forms_2##2#expand_forms_2##3"{Base.JuliaLowering.DesugaringContext{Dict{Symbol, Dict{Int64, Any}}}})(e::Base.JuliaSyntax.SyntaxTree{Dict{Symbol, Dict{Int64, Any}}})  @ Base.JuliaLowering /source/usr/share/julia/JuliaLowering/src/desugaring.jl:4421 [inlined]  [31] 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  [32] getindex(A::Vector{UnitRange{Int64}}, i::Int64)  @ Base essentials.jl:1040 [inlined]  [33] numchildren(graph::Base.JuliaSyntax.SyntaxGraph{Dict{Symbol, Dict{Int64, Any}}}, id::Int64)  @ Base.JuliaSyntax /source/usr/share/julia/JuliaSyntax/src/porcelain/syntax_graph.jl:121 [inlined]  [34] numchildren(ex::Base.JuliaSyntax.SyntaxTree{Dict{Symbol, Dict{Int64, Any}}})  @ Base.JuliaSyntax /source/usr/share/julia/JuliaSyntax/src/porcelain/syntax_graph.jl:306 [inlined]  [35] 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  [36] macro expansion  @ /source/usr/share/julia/JuliaLowering/src/ast.jl:290 [inlined]  [37] 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:2417  [38] macro expansion  @ /source/usr/share/julia/JuliaLowering/src/ast.jl:357 [inlined]  [39] 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:2863  [40] macro expansion  @ /source/usr/share/julia/JuliaLowering/src/ast.jl:357 [inlined]  [41] 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:4257  [42] 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:4428  [43] macro expansion  @ /source/usr/share/julia/JuliaLowering/src/ast.jl:357 [inlined]  [44] 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:1939  [45] 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:4137  [46] expand_forms_2(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:4133 [inlined]  [47] (::Base.JuliaLowering.var"#expand_forms_2##2#expand_forms_2##3"{Base.JuliaLowering.DesugaringContext{Dict{Symbol, Dict{Int64, Any}}}})(e::Base.JuliaSyntax.SyntaxTree{Dict{Symbol, Dict{Int64, Any}}})  @ Base.JuliaLowering /source/usr/share/julia/JuliaLowering/src/desugaring.jl:4421 [inlined]  [48] 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  [49] getindex(A::Vector{UnitRange{Int64}}, i::Int64)  @ Base essentials.jl:1040 [inlined]  [50] numchildren(graph::Base.JuliaSyntax.SyntaxGraph{Dict{Symbol, Dict{Int64, Any}}}, id::Int64)  @ Base.JuliaSyntax /source/usr/share/julia/JuliaSyntax/src/porcelain/syntax_graph.jl:121 [inlined]  [51] numchildren(ex::Base.JuliaSyntax.SyntaxTree{Dict{Symbol, Dict{Int64, Any}}})  @ Base.JuliaSyntax /source/usr/share/julia/JuliaSyntax/src/porcelain/syntax_graph.jl:306 [inlined]  [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:4268  [53] macro expansion  @ /source/usr/share/julia/JuliaLowering/src/ast.jl:290 [inlined]  [54] 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:2417  [55] macro expansion  @ /source/usr/share/julia/JuliaLowering/src/ast.jl:357 [inlined]  [56] 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:2863  [57] 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:4249  [58] 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:1320  [59] 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:4177  [60] expand_forms_2(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:4133 [inlined]  [61] (::Base.JuliaLowering.var"#expand_forms_2##2#expand_forms_2##3"{Base.JuliaLowering.DesugaringContext{Dict{Symbol, Dict{Int64, Any}}}})(e::Base.JuliaSyntax.SyntaxTree{Dict{Symbol, Dict{Int64, Any}}})  @ Base.JuliaLowering /source/usr/share/julia/JuliaLowering/src/desugaring.jl:4421 [inlined]  [62] 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  [63] getindex(A::Vector{UnitRange{Int64}}, i::Int64)  @ Base essentials.jl:1040 [inlined]  [64] numchildren(graph::Base.JuliaSyntax.SyntaxGraph{Dict{Symbol, Dict{Int64, Any}}}, id::Int64)  @ Base.JuliaSyntax /source/usr/share/julia/JuliaSyntax/src/porcelain/syntax_graph.jl:121 [inlined]  [65] numchildren(ex::Base.JuliaSyntax.SyntaxTree{Dict{Symbol, Dict{Int64, Any}}})  @ Base.JuliaSyntax /source/usr/share/julia/JuliaSyntax/src/porcelain/syntax_graph.jl:306 [inlined]  [66] 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  [67] expand_forms_2(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:4133 [inlined]  [68] 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:4450  [69] 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  [70] include(mapexpr::Function, mod::Module, _path::String)  @ Base Base.jl:327  [71] top-level scope  @ ~/.julia/packages/Helium/LcQDp/src/Helium.jl:30  [72] include(mod::Module, _path::String)  @ Base Base.jl:326  [73] 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:3296  [74] top-level scope  @ stdin:5  [75] eval(m::Module, e::Any)  @ Core boot.jl:521  [76] include_string(mapexpr::typeof(identity), mod::Module, code::String, filename::String)  @ Base loading.jl:3132  [77] include_string(m::Module, txt::String, fname::String)  @ Base loading.jl:3142 [inlined]  [78] exec_options(opts::Base.JLOptions)  @ Base client.jl:353  [79] _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 3.4 s ✓ JLLWrappers 3.1 s ✓ PrecompileTools 3.6 s ✓ Libiconv_jll 3.6 s ✓ Git_LFS_jll 3.9 s ✓ OpenSSH_jll 3.8 s ✓ Expat_jll 39.0 s ✓ Parsers 3.7 s ✓ Git_jll 107.4 s ✓ JSON 2.4 s ✓ Git 231.9 s ✓ Documenter 23 dependencies successfully precompiled in 601 seconds. 33 already precompiled. Precompilation completed after 647.37s ################################################################################ # Testing # Testing Helium Status `/tmp/jl_ZNDG8f/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_ZNDG8f/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.1 [0e77f7df] LazilyInitializedFields v1.3.0 [d0879d2d] MarkdownAST v0.1.3 [69de0a69] Parsers v2.8.5 [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.1+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.2+0 [deac9b47] LibCURL_jll v8.20.0+1 [e37daf67] LibGit2_jll v1.9.4+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:2182 =# 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:2182  [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:2210  [3] getproperty(x::Base.JuliaLowering.DesugaringContext{Dict{Symbol, Dict{Int64, Any}}}, f::Symbol)  @ Base Base_compiler.jl:58 [inlined]  [4] syntax_graph(ctx::Base.JuliaLowering.DesugaringContext{Dict{Symbol, Dict{Int64, Any}}})  @ Base.JuliaLowering /source/usr/share/julia/JuliaLowering/src/ast.jl:45 [inlined]  [5] macro expansion  @ /source/usr/share/julia/JuliaLowering/src/ast.jl:357 [inlined]  [6] 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:4269  [7] expand_forms_2(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:4133 [inlined]  [8] (::Base.JuliaLowering.var"#expand_forms_2##2#expand_forms_2##3"{Base.JuliaLowering.DesugaringContext{Dict{Symbol, Dict{Int64, Any}}}})(e::Base.JuliaSyntax.SyntaxTree{Dict{Symbol, Dict{Int64, Any}}})  @ Base.JuliaLowering /source/usr/share/julia/JuliaLowering/src/desugaring.jl:4421 [inlined]  [9] 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  [10] getindex(A::Vector{UnitRange{Int64}}, i::Int64)  @ Base essentials.jl:1040 [inlined]  [11] numchildren(graph::Base.JuliaSyntax.SyntaxGraph{Dict{Symbol, Dict{Int64, Any}}}, id::Int64)  @ Base.JuliaSyntax /source/usr/share/julia/JuliaSyntax/src/porcelain/syntax_graph.jl:121 [inlined]  [12] numchildren(ex::Base.JuliaSyntax.SyntaxTree{Dict{Symbol, Dict{Int64, Any}}})  @ Base.JuliaSyntax /source/usr/share/julia/JuliaSyntax/src/porcelain/syntax_graph.jl:306 [inlined]  [13] 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  [14] macro expansion  @ /source/usr/share/julia/JuliaLowering/src/ast.jl:357 [inlined]  [15] 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:4368  [16] expand_forms_2(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:4133 [inlined]  [17] (::Base.JuliaLowering.var"#expand_forms_2##2#expand_forms_2##3"{Base.JuliaLowering.DesugaringContext{Dict{Symbol, Dict{Int64, Any}}}})(e::Base.JuliaSyntax.SyntaxTree{Dict{Symbol, Dict{Int64, Any}}})  @ Base.JuliaLowering /source/usr/share/julia/JuliaLowering/src/desugaring.jl:4421 [inlined]  [18] 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  [19] getindex(A::Vector{UnitRange{Int64}}, i::Int64)  @ Base essentials.jl:1040 [inlined]  [20] numchildren(graph::Base.JuliaSyntax.SyntaxGraph{Dict{Symbol, Dict{Int64, Any}}}, id::Int64)  @ Base.JuliaSyntax /source/usr/share/julia/JuliaSyntax/src/porcelain/syntax_graph.jl:121 [inlined]  [21] numchildren(ex::Base.JuliaSyntax.SyntaxTree{Dict{Symbol, Dict{Int64, Any}}})  @ Base.JuliaSyntax /source/usr/share/julia/JuliaSyntax/src/porcelain/syntax_graph.jl:306 [inlined]  [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:4268  [23] 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:4428  [24] length(a::Vector{Int64})  @ Base essentials.jl:1255 [inlined]  [25] append!(a::Vector{Int64}, items::Vector{Int64})  @ Base array.jl:1440 [inlined]  [26] _append_nodeids!(graph::Base.JuliaSyntax.SyntaxGraph{Dict{Symbol, Dict{Int64, Any}}}, ids::Vector{Int64}, vals::Base.JuliaSyntax.SyntaxList{Dict{Symbol, Dict{Int64, Any}}, Vector{Int64}})  @ Base.JuliaLowering /source/usr/share/julia/JuliaLowering/src/ast.jl:187 [inlined]  [27] macro expansion  @ /source/usr/share/julia/JuliaLowering/src/ast.jl:357 [inlined]  [28] 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:4269  [29] expand_forms_2(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:4133 [inlined]  [30] (::Base.JuliaLowering.var"#expand_forms_2##2#expand_forms_2##3"{Base.JuliaLowering.DesugaringContext{Dict{Symbol, Dict{Int64, Any}}}})(e::Base.JuliaSyntax.SyntaxTree{Dict{Symbol, Dict{Int64, Any}}})  @ Base.JuliaLowering /source/usr/share/julia/JuliaLowering/src/desugaring.jl:4421 [inlined]  [31] 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  [32] getindex(A::Vector{UnitRange{Int64}}, i::Int64)  @ Base essentials.jl:1040 [inlined]  [33] numchildren(graph::Base.JuliaSyntax.SyntaxGraph{Dict{Symbol, Dict{Int64, Any}}}, id::Int64)  @ Base.JuliaSyntax /source/usr/share/julia/JuliaSyntax/src/porcelain/syntax_graph.jl:121 [inlined]  [34] numchildren(ex::Base.JuliaSyntax.SyntaxTree{Dict{Symbol, Dict{Int64, Any}}})  @ Base.JuliaSyntax /source/usr/share/julia/JuliaSyntax/src/porcelain/syntax_graph.jl:306 [inlined]  [35] 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  [36] macro expansion  @ /source/usr/share/julia/JuliaLowering/src/ast.jl:290 [inlined]  [37] 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:2417  [38] macro expansion  @ /source/usr/share/julia/JuliaLowering/src/ast.jl:357 [inlined]  [39] 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:2863  [40] macro expansion  @ /source/usr/share/julia/JuliaLowering/src/ast.jl:357 [inlined]  [41] 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:4257  [42] 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:4428  [43] macro expansion  @ /source/usr/share/julia/JuliaLowering/src/ast.jl:357 [inlined]  [44] 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:1939  [45] 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:4137  [46] expand_forms_2(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:4133 [inlined]  [47] (::Base.JuliaLowering.var"#expand_forms_2##2#expand_forms_2##3"{Base.JuliaLowering.DesugaringContext{Dict{Symbol, Dict{Int64, Any}}}})(e::Base.JuliaSyntax.SyntaxTree{Dict{Symbol, Dict{Int64, Any}}})  @ Base.JuliaLowering /source/usr/share/julia/JuliaLowering/src/desugaring.jl:4421 [inlined]  [48] 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  [49] getindex(A::Vector{UnitRange{Int64}}, i::Int64)  @ Base essentials.jl:1040 [inlined]  [50] numchildren(graph::Base.JuliaSyntax.SyntaxGraph{Dict{Symbol, Dict{Int64, Any}}}, id::Int64)  @ Base.JuliaSyntax /source/usr/share/julia/JuliaSyntax/src/porcelain/syntax_graph.jl:121 [inlined]  [51] numchildren(ex::Base.JuliaSyntax.SyntaxTree{Dict{Symbol, Dict{Int64, Any}}})  @ Base.JuliaSyntax /source/usr/share/julia/JuliaSyntax/src/porcelain/syntax_graph.jl:306 [inlined]  [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:4268  [53] macro expansion  @ /source/usr/share/julia/JuliaLowering/src/ast.jl:290 [inlined]  [54] 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:2417  [55] macro expansion  @ /source/usr/share/julia/JuliaLowering/src/ast.jl:357 [inlined]  [56] 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:2863  [57] 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:4249  [58] 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:1320  [59] 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:4177  [60] expand_forms_2(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:4133 [inlined]  [61] (::Base.JuliaLowering.var"#expand_forms_2##2#expand_forms_2##3"{Base.JuliaLowering.DesugaringContext{Dict{Symbol, Dict{Int64, Any}}}})(e::Base.JuliaSyntax.SyntaxTree{Dict{Symbol, Dict{Int64, Any}}})  @ Base.JuliaLowering /source/usr/share/julia/JuliaLowering/src/desugaring.jl:4421 [inlined]  [62] 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  [63] getindex(A::Vector{UnitRange{Int64}}, i::Int64)  @ Base essentials.jl:1040 [inlined]  [64] numchildren(graph::Base.JuliaSyntax.SyntaxGraph{Dict{Symbol, Dict{Int64, Any}}}, id::Int64)  @ Base.JuliaSyntax /source/usr/share/julia/JuliaSyntax/src/porcelain/syntax_graph.jl:121 [inlined]  [65] numchildren(ex::Base.JuliaSyntax.SyntaxTree{Dict{Symbol, Dict{Int64, Any}}})  @ Base.JuliaSyntax /source/usr/share/julia/JuliaSyntax/src/porcelain/syntax_graph.jl:306 [inlined]  [66] 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  [67] expand_forms_2(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:4133 [inlined]  [68] 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:4450  [69] 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  [70] include(mapexpr::Function, mod::Module, _path::String)  @ Base Base.jl:327  [71] top-level scope  @ ~/.julia/packages/Helium/LcQDp/src/Helium.jl:30  [72] include(mod::Module, _path::String)  @ Base Base.jl:326  [73] 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:3296  [74] top-level scope  @ stdin:5  [75] eval(m::Module, e::Any)  @ Core boot.jl:521  [76] include_string(mapexpr::typeof(identity), mod::Module, code::String, filename::String)  @ Base loading.jl:3132  [77] include_string(m::Module, txt::String, fname::String)  @ Base loading.jl:3142 [inlined]  [78] exec_options(opts::Base.JLOptions)  @ Base client.jl:353  [79] _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_YrXPh7" (ProcessExited(1)). in expression starting at /home/pkgeval/.julia/packages/Helium/LcQDp/test/runtests.jl:1 Testing failed after 25.08s 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] 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 [4] 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 [5] test(pkgs::Vector{String}; kwargs::@Kwargs{julia_args::Cmd}) @ Pkg.API /opt/julia/share/julia/stdlib/v1.14/Pkg/src/API.jl:160 [6] test(pkg::String; kwargs::@Kwargs{julia_args::Cmd}) @ Pkg.API /opt/julia/share/julia/stdlib/v1.14/Pkg/src/API.jl:159 [inlined] [7] top-level scope @ /PkgEval.jl/scripts/evaluate.jl:223 [8] include(mod::Module, _path::String) @ Base Base.jl:326 [9] exec_options(opts::Base.JLOptions) @ Base client.jl:355 [10] _start() @ Base client.jl:596 in expression starting at /PkgEval.jl/scripts/evaluate.jl:214 PkgEval failed after 712.43s: package fails to precompile