ObjectTranslator
ObjectTranslator copied to clipboard
ActionScript 3 utility to convert generic objects into class instances.
... object. - Also iterates arrays that have the [ArrayElementType] metadata tag specifiying the type of objects contained within the array.
I found the XML part of this slows it down and it is almost 3 times faster by skipping the XML like this: var fullyQualifiedName:String = getQualifiedClassName(clazz).replace( /::/, "." );...
https://github.com/darronschall/ObjectTranslator/blob/master/src/com/darronschall/serialization/ObjectTranslator.as#L78