getValueUnbound method

dynamic getValueUnbound(
  1. dynamic targetArray,
  2. dynamic offset
)

Implementation

getValueUnbound(targetArray, offset) {
  bind();
  getValue(targetArray, offset);

  // Note: This class uses a State pattern on a per-method basis:
  // 'bind' sets 'this.getValue' / 'setValue' and shadows the
  // prototype version of these methods with one that represents
  // the bound state. When the property is not found, the methods
  // become no-ops.
}