mirror of
				https://github.com/livebook-dev/livebook.git
				synced 2025-10-31 15:56:05 +08:00 
			
		
		
		
	* 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
 |