refactor: rename coders/lua_parsing to coders/syntax_parser

This commit is contained in:
MihailRis
2025-04-12 21:14:18 +03:00
parent d888ddec4c
commit 4360cd408b
4 changed files with 10 additions and 9 deletions
+12
View File
@@ -0,0 +1,12 @@
#pragma once
#include <string>
#include <vector>
#include "devtools/syntax.hpp"
namespace devtools {
std::vector<Token> tokenize(
std::string_view file, std::wstring_view source
);
}