recompute method

void recompute()

Call the computed function and update the value

Implementation

void recompute() {
  value;
  internalValue = fn();
  flags |= OUTDATED | NOTIFIED;

  for (var node = targets; node != null; node = node.nextTarget) {
    node.target.notify();
  }
}