Goose  Artifact [ee3d90c1e4]

Artifact ee3d90c1e425b0086bf7cb3c10ba8ec77a2b837517f3474b8f03332ffc02b6b8:

  • File bs/builtins/types/template/build.h — part of check-in [114cdaf51b] at 2019-02-22 21:43:18 on branch trunk — Templates: implemented BuildTFuncType() and BuildTFunc(). (user: achavasse size: 346)

#ifndef EMPATHY_BUILTINS_TEMPLATE_BUILD_H
#define EMPATHY_BUILTINS_TEMPLATE_BUILD_H

namespace empathy::builtins
{
    TFuncType BuildTFuncType( const Value& returnType, const Value& params );
    optional< Value > BuildTFunc( const Context& c, const StringId& id, const Value& returnType, const Value& params, vector< Term >&& body );
}

#endif