aboutsummaryrefslogtreecommitdiff
path: root/src/yuescript/yue_compiler.cpp
diff options
context:
space:
mode:
authorLi Jin <dragon-fly@qq.com>2021-05-02 00:15:33 +0800
committerLi Jin <dragon-fly@qq.com>2021-05-02 00:15:33 +0800
commitc46703c3d7c756608ca050143703483368ebf466 (patch)
treea0a6620f75b43b89936f6a88c096350e800bc792 /src/yuescript/yue_compiler.cpp
parent7b11ae6e9a5b71db627ae5eb497d2b5855a66db0 (diff)
downloadyuescript-c46703c3d7c756608ca050143703483368ebf466.tar.gz
yuescript-c46703c3d7c756608ca050143703483368ebf466.tar.bz2
yuescript-c46703c3d7c756608ca050143703483368ebf466.zip
fix issue #51 by aliasing symbol :: as colon chain item.
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 7cd39af..78fb5e2 100644
--- a/src/yuescript/yue_compiler.cpp
+++ b/src/yuescript/yue_compiler.cpp
@@ -59,7 +59,7 @@ inline std::string s(std::string_view sv) {
59 return std::string(sv); 59 return std::string(sv);
60} 60}
61 61
62const std::string_view version = "0.7.11"sv; 62const std::string_view version = "0.7.12"sv;
63const std::string_view extension = "yue"sv; 63const std::string_view extension = "yue"sv;
64 64
65class YueCompilerImpl { 65class YueCompilerImpl {