defaultCtor.hpp
Go to the documentation of this file.
1
2#pragma once
3
5#include "core/ast/args.hpp"
6
7namespace by {
8
9 class visitor;
10
15 class _nout defaultCtor: public baseCtor {
16 BY(ME(defaultCtor, baseCtor), CLONE(defaultCtor), VISIT())
17
18 public:
19 defaultCtor(const node& org);
20
21 public:
22 using super::run;
23 str run(const args& a) override;
24 };
25}
Function call arguments container.
Definition: args.hpp:13
Base class for all constructor types.
Definition: baseCtor.hpp:12
Default constructor implementation.
Definition: defaultCtor.hpp:15
Base class for all AST nodes in byeol language.
Definition: node.hpp:30