Goose  Artifact [583efba917]

Artifact 583efba917352656767dfdcac90c62cb9863a038fcfb04d42c29758e51520582:

  • File bs/llr/func.cpp — part of check-in [d2c4e27b15] at 2019-03-02 12:33:24 on branch trunk — llr: added predicates to quickly test if an llr element is suitable for compilation time execution, or for eager evaluation. (user: achavasse size: 173)

#include "llr/llr.h"

namespace empathy::llr
{
    bool Func::canBeExecuted() const
    {
        // TODO true if the body llr can be executed
        return false;
    }
}