mirror of
https://github.com/Ed94/gencpp.git
synced 2024-11-12 20:04:52 -08:00
Ed_
d36c3fa847
Looking into properly dealing with empty lines... I want to preserve the text's empty lines in the AST for serialization purposes (perserve formatting for gapes between definitions). Don't want to introduce the possibility of it breaking though, so will have to ignore empty_lines in a general way (if they are in a bad spot). Attempted to cover that by having TokArray::current() auto-skip empty lines and eat as well if the type doesn't match.
16 lines
206 B
C++
16 lines
206 B
C++
struct Builder
|
|
{
|
|
FileInfo File;
|
|
String Buffer;
|
|
|
|
static Builder open( char const* path );
|
|
|
|
void pad_lines( s32 num );
|
|
|
|
void print( Code );
|
|
void print_fmt( char const* fmt, ... );
|
|
|
|
void write();
|
|
};
|
|
|