mirror of
https://github.com/livebook-dev/livebook.git
synced 2024-11-15 04:15:18 +08:00
acd100f3d3
* Update Code.Fragment backport * Support structs completion and show module subtype * Support sigil completion * Update changelog * Don't show completion items for hidden modules * Update Code.Fragment backport
8 lines
124 B
Elixir
8 lines
124 B
Elixir
defmodule Livebook.TestModules.Hidden do
|
|
@moduledoc false
|
|
|
|
def visible, do: :ok
|
|
|
|
@doc false
|
|
def hidden, do: :ok
|
|
end
|