gencpp/project/components/temp
Ed_ 5d7dfaf666 Heavy refactor..
Isolating large macros to their own directory (components/temp).
- Plan is to remove them soon with proper generation.

Added additional component files, separating the old data_structures header for a set of ast headers.
Header_end also had its inlines extracted out.
Necessary to complete the macro isolation.

ZPL parser dependencies were removed from the core library along with builder, its now generated in bootstrap as pare of making a gen_builder set of files.

Singleheader will be changed in next few commits to reflect this as well (By making builder deps and components a conditional option).

Tests are most likely all broken for now.
2023-08-03 11:01:43 -04:00
..
ast_inlines.hpp Heavy refactor.. 2023-08-03 11:01:43 -04:00
ecode.hpp Heavy refactor.. 2023-08-03 11:01:43 -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 Heavy refactor.. 2023-08-03 11:01:43 -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.