You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
search for this line : this.defaultBindingMode = this.defaultBindingMode || _aureliaBinding.bindingMode.oneWay;
set a conditional breakpoint nameOrConfig.name === "foo"
run
When the debugger stops, this.defaultBindingMode equals 0 which is the value for bindingMode.oneTime. Therefore the boolean expression returns the OR side because 0 is falsy.
The text was updated successfully, but these errors were encountered:
this.defaultBindingMode = this.defaultBindingMode || _aureliaBinding.bindingMode.oneWay
;nameOrConfig.name === "foo"
When the debugger stops,
this.defaultBindingMode
equals0
which is the value forbindingMode.oneTime
. Therefore the boolean expression returns the OR side because 0 is falsy.The text was updated successfully, but these errors were encountered: