Rename printer and interpreter to ast_printer and ast_interpreter

This commit is contained in:
2025-06-29 02:18:25 +01:00
parent e352df9d7d
commit e4723166a2
6 changed files with 6 additions and 6 deletions

View File

@@ -1,4 +1,4 @@
#include "interpreter.hh"
#include "ast_interpreter.hh"
#include "expr.hh"
#include "../error_handler.hh"
#include "../tokenizer.hh"

View File

@@ -1,4 +1,4 @@
#include "printer.hh"
#include "ast_printer.hh"
#include "expr.hh"
#include <cassert>
#include <string>