transformTarget method
Modify a target instance by applying all specified operations.
source the source object
target the target object
context the context object
Implementation
void transformTarget(dynamic source, dynamic target, CONTEXT context) {
var len = operations.length;
for ( int i = 0; i < len; i++) {
operations[i].setTarget(source, target, context);
}
}