Skip to content

Commit

Permalink
chore: improve compiler dependency resolution
Browse files Browse the repository at this point in the history
  • Loading branch information
trueadm committed Jan 17, 2025
1 parent a9d1f46 commit 17ed484
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,9 @@ export function Attribute(node, context) {

node.metadata.expression.has_state ||= chunk.metadata.expression.has_state;
node.metadata.expression.has_call ||= chunk.metadata.expression.has_call;
chunk.metadata.expression.dependencies.forEach((dependency) =>
node.metadata.expression.dependencies.add(dependency)
);
}

if (is_event_attribute(node)) {
Expand Down

0 comments on commit 17ed484

Please sign in to comment.