1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#ifndef EMPATHY_BUILTINS_TYPES_RUNTIME_H
#define EMPATHY_BUILTINS_TYPES_RUNTIME_H
#include "basic.h"
#include "pointer.h"
#include "array.h"
#include "struct.h"
namespace empathy::builtins
{
extern void SetupRuntimeBasicTypes( Env& e );
extern void SetupRuntimeTypesUnification( Env& e );
static inline void SetupRuntimeTypes( Env& e )
{
SetupRuntimeBasicTypes( e );
|
|
|
|
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#ifndef GOOSE_BUILTINS_TYPES_RUNTIME_H
#define GOOSE_BUILTINS_TYPES_RUNTIME_H
#include "basic.h"
#include "pointer.h"
#include "array.h"
#include "struct.h"
namespace goose::builtins
{
extern void SetupRuntimeBasicTypes( Env& e );
extern void SetupRuntimeTypesUnification( Env& e );
static inline void SetupRuntimeTypes( Env& e )
{
SetupRuntimeBasicTypes( e );
|