2023-07-30 15:55:57 -07:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#define GEN_DEFINE_LIBRARY_CODE_CONSTANTS
|
|
|
|
#define GEN_ENFORCE_STRONG_CODE_TYPES
|
|
|
|
#define GEN_EXPOSE_BACKEND
|
|
|
|
#define GEN_BENCHMARK
|
|
|
|
#include "gen.hpp"
|
|
|
|
#include "file_processors/scanner.hpp"
|
|
|
|
using namespace gen;
|
|
|
|
|
|
|
|
void check_singleheader_ast()
|
|
|
|
{
|
|
|
|
#define project_dir "../../"
|
|
|
|
gen::init();
|
|
|
|
log_fmt("\ncheck_singleheader_ast:\n");
|
|
|
|
|
|
|
|
FileContents file = file_read_contents( GlobalAllocator, true, project_dir "singleheader/gen/gen.hpp" );
|
|
|
|
|
|
|
|
CodeBody ast = parse_global_body( { file.size, (char const*)file.data } );
|
|
|
|
|
2023-08-01 11:02:54 -07:00
|
|
|
log_fmt("generated AST!!!\n");
|
|
|
|
|
2023-08-01 17:56:00 -07:00
|
|
|
// s32 idx = 0;
|
|
|
|
// for ( Code entry : ast )
|
|
|
|
// {
|
|
|
|
// log_fmt("Entry %d: %s", idx, entry.to_string() );
|
|
|
|
// idx++;
|
|
|
|
// }
|
2023-07-30 15:55:57 -07:00
|
|
|
|
|
|
|
Builder builder;
|
2023-08-01 13:07:47 -07:00
|
|
|
builder.open( "singleheader_copy.gen.hpp" );
|
2023-08-01 17:56:00 -07:00
|
|
|
log_fmt("\n\nserializng ast\n");
|
2023-07-30 15:55:57 -07:00
|
|
|
builder.print( ast );
|
|
|
|
builder.write();
|
|
|
|
|
|
|
|
log_fmt("passed!!\n");
|
|
|
|
gen::deinit();
|
|
|
|
}
|