로딩중...
검색중...
일치하는것 없음
defaultCtor.hpp
이 파일의 문서화 페이지로 가기
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