Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

$watch should consider two NaNs to be equal #657

Closed
IgorMinar opened this issue Nov 15, 2011 · 4 comments
Closed

$watch should consider two NaNs to be equal #657

IgorMinar opened this issue Nov 15, 2011 · 4 comments
Labels

Comments

@IgorMinar
Copy link
Contributor

recently in feedback we got into a situation where an infinite digest was caused by a watch that returned an object with NaN values. we should be smart enough to consider two NaNs to be equal.

Test case: http://jsfiddle.net/IgorMinar/CHVbb/184/

@IgorMinar
Copy link
Contributor Author

the fix should be done in the equals method that $digest uses when executing watchers:

if ((value = watch.get(current)) !== (last = watch.last) && !equals(value, last)) {

the equals should take another boolean argument which if true should result in equals considering two NaNs to be equal.

@Codier
Copy link
Contributor

Codier commented Nov 15, 2011

Sure I can work on this :)

@Codier
Copy link
Contributor

Codier commented Nov 16, 2011

There is a complication in $watch function,

              watcher = {
              fn: listenFn,
              last: Number.NaN, // NaN !== NaN. We used this to force $watch to fire on first run.
              get: get,
              exp: watchExp
            };

If we apply the fix you suggested, and on first digest cycle the expression evaluates to NaN, then the function attached to watcher will not run at all even for the first time.

A workaround probably will be to have a firstRun boolean property attached to each watcher and delete it after firstrun

              watcher = {
              fn: listenFn,
              last: Number.NaN, // NaN !== NaN. We used this to force $watch to fire on first run.
              get: get,
              exp: watchExp,
              firstRun: true
            };
//inside the digest function
   if ((value = watch.get(current)) !== (last = watch.last) && !equals(value, last, !watcher.firstRun)} {
       delete watcher.firstRun
  }
//....
   

@Codier Codier closed this as completed in 29f9e26 Nov 21, 2011
@IgorMinar
Copy link
Contributor Author

landed as 29f9e26

thanks!

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
Projects
None yet
Development

No branches or pull requests

2 participants