Skip to content

Commit

Permalink
fix(name resolution): adding missing designated initializer for Names…
Browse files Browse the repository at this point in the history
…pace in ImportSolver.cpp

Signed-off-by: Alexandre Plateau <[email protected]>
  • Loading branch information
SuperFola authored Dec 3, 2024
1 parent e2c4331 commit 157df6d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/arkreactor/Compiler/Package/ImportSolver.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ namespace Ark::internal
.is_glob = import.is_glob,
.with_prefix = import.with_prefix,
.symbols = import.symbols,
std::make_shared<Node>(findAndReplaceImports(x).first) });
.ast = std::make_shared<Node>(findAndReplaceImports(x).first) });
}
// we parsed an import node, return true in the pair to notify the caller
return std::make_pair(x, /* is_import= */ true);
Expand Down

0 comments on commit 157df6d

Please sign in to comment.