Goose  Documentation

#ifndef EMPATHY_BUILTINS_API_H
#define EMPATHY_BUILTINS_API_H

#include "support/support.h"
#include "codegen/codegen.h"

namespace empathy::builtins
{
    extern void SetupApiString( Env& e );
    extern void SetupApiCompiler( Env& e );

    static inline void SetupBuiltinApi( Env& e )
    {
        SetupApiString( e );
        SetupApiCompiler( e );
        SetupApiSupport( e );
        SetupApiCodeGen( e );
    }
}

#endif