evalConvergence.hpp
Go to the documentation of this file.
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:18
Base class for all objects in byeol language.
Definition: baseObj.hpp:24
func closure with captured object scope
Definition: closure.hpp:19
Definition: evalConvergence.hpp:7
Base class for all AST nodes in byeol language.
Definition: node.hpp:30
Managed object in byeol programming environment.
Definition: obj.hpp:19
Definition: tbaseConvergence.hpp:19