aboutsummaryrefslogtreecommitdiff
path: root/src/yuescript/yue_compiler.cpp
diff options
context:
space:
mode:
authorLi Jin <dragon-fly@qq.com>2022-10-18 10:26:48 +0800
committerLi Jin <dragon-fly@qq.com>2022-10-18 10:26:48 +0800
commit6b6e98d062c7ec5f11be79ed5164aa59047dab30 (patch)
treee0893ac6b3a8a64b81d81b03a8e413b112114586 /src/yuescript/yue_compiler.cpp
parent374292d175c0dcea8b24fc0dc4c0636e9cc85afa (diff)
downloadyuescript-6b6e98d062c7ec5f11be79ed5164aa59047dab30.tar.gz
yuescript-6b6e98d062c7ec5f11be79ed5164aa59047dab30.tar.bz2
yuescript-6b6e98d062c7ec5f11be79ed5164aa59047dab30.zip
move utf8 bom skipping to parser.
Diffstat (limited to '')
-rw-r--r--src/yuescript/yue_compiler.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/yuescript/yue_compiler.cpp b/src/yuescript/yue_compiler.cpp
index bdb07e0..2be4498 100644
--- a/src/yuescript/yue_compiler.cpp
+++ b/src/yuescript/yue_compiler.cpp
@@ -60,7 +60,7 @@ namespace yue {
60 60
61typedef std::list<std::string> str_list; 61typedef std::list<std::string> str_list;
62 62
63const std::string_view version = "0.15.4"sv; 63const std::string_view version = "0.15.5"sv;
64const std::string_view extension = "yue"sv; 64const std::string_view extension = "yue"sv;
65 65
66class YueCompilerImpl { 66class YueCompilerImpl {