Hey, two of the parser filenames (parser-read-hek-data, parser-read-cache-file-data) are swapped because of an order mix-up in src/invader.cmake and src/tag/code_generator/__main.py__. Currently, parse_cache_file_data methods are written to parser-read-hek-data.cpp and parse_hek_tag_data methods are written to parser-read-cache-file-data.cpp.
The first commit fixes this, the second commit removes one of the manual mappings so there is one less place to accidentally write them in the wrong order.
Hey, two of the parser filenames (
parser-read-hek-data
,parser-read-cache-file-data
) are swapped because of an order mix-up insrc/invader.cmake
andsrc/tag/code_generator/__main.py__
. Currently,parse_cache_file_data
methods are written toparser-read-hek-data.cpp
andparse_hek_tag_data
methods are written toparser-read-cache-file-data.cpp
.The first commit fixes this, the second commit removes one of the manual mappings so there is one less place to accidentally write them in the wrong order.