1
2
3
4
5
6
7
8
9
10
11
12
|
#include "builtins/builtins.h"
#include "parse/parse.h"
using namespace goose::parse;
using namespace goose::llr;
namespace goose::builtins
{
void SetupLower( Env& e )
{
// Default implementation of LowerTypeForVerification():
// Do nothing.
|
|
|
1
2
3
4
5
6
7
8
9
10
11
12
|
#include "builtins/builtins.h"
#include "parse/parse.h"
using namespace goose::parse;
using namespace goose::cir;
namespace goose::builtins
{
void SetupLower( Env& e )
{
// Default implementation of LowerTypeForVerification():
// Do nothing.
|