VoxelEngine/src/coders/lua_parsing.hpp
MihailRis 8a8c1525fd
Fix syntax highlighting unicode support (#475)
* convert BasicParser to a template

* fix syntax hightlighting with unicode characters
2025-02-22 01:01:20 +03:00

13 lines
207 B
C++

#pragma once
#include <string>
#include <vector>
#include "devtools/syntax.hpp"
namespace lua {
std::vector<devtools::Token> tokenize(
std::string_view file, std::wstring_view source
);
}