aboutsummaryrefslogtreecommitdiff
path: root/src/yuescript/yue_compiler.cpp
diff options
context:
space:
mode:
authorLi Jin <dragon-fly@qq.com>2022-11-07 18:22:13 +0800
committerLi Jin <dragon-fly@qq.com>2022-11-09 11:29:32 +0800
commite62eb9537df808ca461917cccea14e662312c775 (patch)
tree0b1eb2f756e8b77f99dc463a54c5be55cca1cea1 /src/yuescript/yue_compiler.cpp
parentfbdf356c7ac688da385edfc23e9d8bb3e6c87a00 (diff)
downloadyuescript-e62eb9537df808ca461917cccea14e662312c775.tar.gz
yuescript-e62eb9537df808ca461917cccea14e662312c775.tar.bz2
yuescript-e62eb9537df808ca461917cccea14e662312c775.zip
start to add error AST reporting.
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 22a4a02..e061604 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.7"sv; 63const std::string_view version = "0.15.8"sv;
64const std::string_view extension = "yue"sv; 64const std::string_view extension = "yue"sv;
65 65
66class YueCompilerImpl { 66class YueCompilerImpl {