aboutsummaryrefslogtreecommitdiff
path: root/src/yuescript/yue_compiler.cpp
diff options
context:
space:
mode:
authorLi Jin <dragon-fly@qq.com>2022-03-03 15:32:24 +0800
committerLi Jin <dragon-fly@qq.com>2022-03-03 15:32:24 +0800
commit9eb846a1e1e11f7ce2f6b89120b2835af470daa6 (patch)
treec3feb8364bb1eddf34555e138f700c6ce482a9b1 /src/yuescript/yue_compiler.cpp
parent6c78271c841baf43365cc7924c0ca2da867f9e79 (diff)
downloadyuescript-9eb846a1e1e11f7ce2f6b89120b2835af470daa6.tar.gz
yuescript-9eb846a1e1e11f7ce2f6b89120b2835af470daa6.tar.bz2
yuescript-9eb846a1e1e11f7ce2f6b89120b2835af470daa6.zip
fix loader order. fix script not found error message.
Diffstat (limited to '')
-rwxr-xr-xsrc/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 274027b..6ae4771 100755
--- a/src/yuescript/yue_compiler.cpp
+++ b/src/yuescript/yue_compiler.cpp
@@ -60,7 +60,7 @@ using namespace parserlib;
60 60
61typedef std::list<std::string> str_list; 61typedef std::list<std::string> str_list;
62 62
63const std::string_view version = "0.10.3"sv; 63const std::string_view version = "0.10.4"sv;
64const std::string_view extension = "yue"sv; 64const std::string_view extension = "yue"sv;
65 65
66class YueCompilerImpl { 66class YueCompilerImpl {