From c6457152f3d7766dc05a3f572c31b22e2fa87577 Mon Sep 17 00:00:00 2001 From: Alexandre Plateau Date: Sun, 29 Sep 2024 00:17:32 +0200 Subject: [PATCH] fix(json compiler): disable import solver in json compiler --- src/arkscript/JsonCompiler.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/arkscript/JsonCompiler.cpp b/src/arkscript/JsonCompiler.cpp index 6098d0c8f..f5f81875e 100644 --- a/src/arkscript/JsonCompiler.cpp +++ b/src/arkscript/JsonCompiler.cpp @@ -10,7 +10,7 @@ using namespace Ark::internal; JsonCompiler::JsonCompiler(unsigned debug, const std::vector& lib_env) : - m_welder(debug, lib_env) + m_welder(debug, lib_env, Ark::DefaultFeatures & ~Ark::FeatureImportSolver) {} void JsonCompiler::feed(const std::string& filename)