@@ -338,13 +338,19 @@ defmodule Scenic.Scene do
338
338
# Here so that the scene can override if desired
339
339
# def init(_, _, _), do: {:ok, nil}
340
340
341
+ @ doc false
341
342
def handle_call ( _msg , _from , state ) , do: { :reply , :err_not_handled , state }
343
+ @ doc false
342
344
def handle_cast ( _msg , state ) , do: { :noreply , state }
345
+ @ doc false
343
346
def handle_info ( _msg , state ) , do: { :noreply , state }
344
347
348
+ @ doc false
345
349
def handle_input ( event , _ , scene_state ) , do: { :noreply , scene_state }
350
+ @ doc false
346
351
def filter_event ( event , _from , scene_state ) , do: { :continue , event , scene_state }
347
352
353
+ @ doc false
348
354
def start_dynamic_scene ( supervisor , parent , args , opts \\ [ ] ) do
349
355
has_children =
350
356
case unquote ( using_opts ) [ :has_children ] do
@@ -385,6 +391,7 @@ defmodule Scenic.Scene do
385
391
defp scene_ref ( ) , do: Process . get ( :scene_ref )
386
392
387
393
# child spec that really starts up scene, with this module as an option
394
+ @ doc false
388
395
def child_spec ( { args , opts } ) when is_list ( opts ) do
389
396
% {
390
397
id: make_ref ( ) ,
0 commit comments