Skip to content

Commit

Permalink
fix(json compiler): disable import solver in json compiler
Browse files Browse the repository at this point in the history
  • Loading branch information
SuperFola committed Sep 28, 2024
1 parent ad0f395 commit c645715
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/arkscript/JsonCompiler.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
using namespace Ark::internal;

JsonCompiler::JsonCompiler(unsigned debug, const std::vector<std::filesystem::path>& lib_env) :
m_welder(debug, lib_env)
m_welder(debug, lib_env, Ark::DefaultFeatures & ~Ark::FeatureImportSolver)
{}

void JsonCompiler::feed(const std::string& filename)
Expand Down

0 comments on commit c645715

Please sign in to comment.