로딩중...
검색중...
일치하는것 없음
evalConvergence.hpp
이 파일의 문서화 페이지로 가기
1
2#pragma once
3
5
6namespace by {
7 class evalConvergence: public tbaseConvergence<node> {
9
10 public:
11 evalConvergence(baseObj& obj, baseFunc& fun, const node& org, onConverge closure);
12
13 public:
14 nbool convergeWithoutFrame() override;
15
16 private:
17 str _org;
18 };
19}
Base class for all function types
Definition baseFunc.hpp:41
Base class for representing byeol objects
Definition baseObj.hpp:73
func closure with captured object scope
Definition closure.hpp:20
Definition evalConvergence.hpp:7
Base class for all AST nodes in the byeol language
Definition node.hpp:195
Byeol runtime environment object
Definition obj.hpp:62
Definition tbaseConvergence.hpp:19
Definition tnarr.hpp:9
to Top