aerial.nvim/tests/treesitter/julia_test.jl

26 lines
292 B
Julia

module mod
const constant = nothing
function func()
end
myfunc() = nothing
abstract type MyType end
struct MyStruct <: MyType
MyStruct() = new()
method() = nothing
end
macro mac(expr)
end
module submod
mod.myfunc() = nothing
function mod.myfuncb()
end
end
end