Skip to content

Commit

Permalink
Fix nasty performance regression when binding events based on objects…
Browse files Browse the repository at this point in the history
… (E2O not utilized in step order)
  • Loading branch information
aarkue committed Oct 23, 2024
1 parent 6624764 commit 93d9fc9
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 3 additions & 1 deletion backend/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions backend/shared/src/binding_box/step_order.rs
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ impl BindingStep {
object,
event,
qualifier,
filter_label: None,
filter_label: _,
} => {
var_can_bind
.entry(Variable::Object(*object))
Expand All @@ -162,7 +162,7 @@ impl BindingStep {
object,
other_object,
qualifier,
filter_label: _
filter_label: _,
} => {
var_can_bind
.entry(Variable::Object(*object))
Expand Down

0 comments on commit 93d9fc9

Please sign in to comment.