로딩중...
검색중...
일치하는것 없음
defaultCopyCtor.hpp
이 파일의 문서화 페이지로 가기
1
2#pragma once
3
5
6namespace by {
7
8 class visitor;
9
19 class _nout defaultCopyCtor: public baseCtor {
21
22 public:
23 defaultCopyCtor(const node& org);
24
25 public:
26 using super::eval;
27 str eval(const args& a) override;
28
29 const src& getSrc() const override;
30 };
31}
Function or object evaluation arguments
Definition args.hpp:22
Base class for all constructor types
Definition baseCtor.hpp:13
Default copy constructor for byeol runtime environment
Definition defaultCopyCtor.hpp:19
Base class for all AST nodes in the byeol language
Definition node.hpp:195
Source location information
Definition src.hpp:15
Definition tnarr.hpp:9
to Top