unbind method

dynamic unbind()

Implementation

unbind() {
  node = null;

  // back to the prototype version of getValue / setValue
  // note: avoiding to mutate the shape of 'this' via 'delete'
  getValue = _getValue_unbound;
  setValue = _setValue_unbound;
}