getValue_unbound method
dynamic
getValue_unbound(
- dynamic targetArray,
- dynamic offset
Implementation
getValue_unbound(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.
}