Loading...
Searching...
No Matches
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
16 class _nout defaultCtor: public baseCtor {
18
19 public:
20 defaultCtor(const node& org);
21
22 public:
23 using super::eval;
24 str eval(const args& a) override;
25 };
26}
Function or object evaluation arguments.
Definition args.hpp:22
Base class for all constructor types.
Definition baseCtor.hpp:13
Default constructor implementation.
Definition defaultCtor.hpp:16
Base class for all AST nodes in the byeol language.
Definition node.hpp:195
Definition tnarr.hpp:9
to Top