Skip to content
← Back

src/semantic/types/action_0.ghul

1
namespace Semantic.Types is
2
use Source.LOCATION;
3
4
class ACTION_0: NAMED is
5
is_function: bool => true;
6
is_action: bool => true;
7
8
init(
9
symbol: Symbols.Classy
10
) is
11
super.init(symbol);
12
si
13
14
create(
15
location: LOCATION,
16
symbol: Symbols.Classy
17
) -> ACTION_0 =>
18
ACTION_0(symbol);
19
20
to_string() -> string => "() -> void";
21
si
22
si