gencpp/project/components/temp
Ed_ d36c3fa847 Single header generates again, some more cleanup.
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.
2023-08-03 23:18:33 -04:00
..
ast_inlines.hpp Heavy refactor.. 2023-08-03 11:01:43 -04:00
ecode.hpp Single header generates again, some more cleanup. 2023-08-03 23:18:33 -04:00
eoperator.hpp Heavy refactor.. 2023-08-03 11:01:43 -04:00
especifier.hpp Heavy refactor.. 2023-08-03 11:01:43 -04:00
etoktype.cpp Single header generates again, some more cleanup. 2023-08-03 23:18:33 -04:00
Readme.md Heavy refactor.. 2023-08-03 11:01:43 -04:00

Temporary Code

These are heavy macro code used throughout the library thats intended to be replaced with codegen done with the library itself.

The reason for this is to minimize macro generation to only trivial cases.
This makes the library more verbose but makes it easier to debug which is of higher priority.

Any sort of verbosity cost will be mitigated with better docs and heavy usage of pragma regions.