diff --git a/src/dangerous.jl b/src/dangerous.jl index 332b8e5..3778ded 100644 --- a/src/dangerous.jl +++ b/src/dangerous.jl @@ -64,8 +64,7 @@ end """ O(n) """ function listArrayLiteral(lst::List{A})::Array{A} where {A<:Any} - local arr::Array{A} - #= Defined in the runtime =# + local arr::Array{A} = listArray(lst) arr end diff --git a/src/exportmetaRuntime.jl b/src/exportmetaRuntime.jl index 6f76757..086efac 100644 --- a/src/exportmetaRuntime.jl +++ b/src/exportmetaRuntime.jl @@ -26,6 +26,7 @@ export intAbs export intAdd export intBitLShift export intBitNot +export intBitAnd export intBitOr export intBitRShift export intBitXor