123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- #ifndef AFUN_ACTIVATION_INLINE_H
- #define AFUN_ACTIVATION_INLINE_H
- #include "activation.h"
- namespace aFuncore {
- inline void Activation::endRun() {
- }
- inline VarList *Activation::getVarlist() const{
- return varlist;
- }
- inline Activation *Activation::toPrev() const{
- return prev;
- }
- inline UpMessage *Activation::getUpStream() const{
- return up;
- }
- inline DownMessage *Activation::getDownStream() const{
- return down;
- }
- inline FileLine Activation::getFileLine() const{
- return line;
- }
- inline const StringFilePath &Activation::getFilePath() const{
- return path;
- }
- inline ExeActivation::ExeActivation(Code *code, Inter &inter_) : Activation(inter_), start{code}, next{code}{
- }
- inline Code *ExeActivation::getStart() const{
- return start;
- }
- inline FuncActivation::FuncActivation(Code *code, Inter &inter_) : Activation(inter_), call{code,}{
- }
- }
- #endif //AFUN_ACTIVATION_INLINE_H
|