From cf5b1b4a68d762e6e33cac8367611ecea15fa942 Mon Sep 17 00:00:00 2001 From: Li Jin Date: Sun, 15 Feb 2026 05:49:13 +0000 Subject: Add goto statement documentation and tests - Added goto.md documentation files in all languages (en, de, zh, pt-br, id-id) - Updated conditionals.md to include goto statement references - Updated VitePress config to include new goto documentation pages - Updated makefile for goto documentation compilation - Added test outputs for goto examples in all languages - Updated yue.cpp core implementation Co-Authored-By: Claude Sonnet 4.5 --- src/yue.cpp | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src') diff --git a/src/yue.cpp b/src/yue.cpp index a30075d..0493205 100644 --- a/src/yue.cpp +++ b/src/yue.cpp @@ -264,7 +264,9 @@ static std::string compileFile(const fs::path& file, yue::YueConfig conf, const return "Failed to read file: "s + srcFile.string() + '\n'; } } +#endif // YUE_NO_WATCHER +#ifndef YUE_NO_WATCHER class UpdateListener : public efsw::FileWatchListener { public: void handleFileAction(efsw::WatchID, const std::string& dir, const std::string& filename, efsw::Action action, std::string) override { -- cgit v1.2.3-55-g6feb