start writing translator
This commit is contained in:
8
src/translator/string/string.c
Normal file
8
src/translator/string/string.c
Normal file
@@ -0,0 +1,8 @@
|
||||
#include "../translator.h"
|
||||
#include <stddef.h>
|
||||
#include <string.h>
|
||||
|
||||
void translate_parsed_string(Translated *translated, ParsedValue *parsedValue) {
|
||||
size_t string_pos = arena_push_string(&translated->constants, (char*)parsedValue->data);
|
||||
// set_registers(translated, 1);
|
||||
}
|
||||
Reference in New Issue
Block a user