Example
ByteCode analyze of a class that contains:
internal static const RLELIBS:Vector.<String> = new Vector.<String>;
fails in ByteCodeConstant.type, because the package lang has truncated the
class name when it is a Vector.
Correction
Class org.as3commons.lang.ClassUtils, method
getClassParameterFromFullyQualifiedName
change
var len:int = (fullName.length - startIdx) - 1;
by
var len:int = (fullName.length - startIdx);
Correct the bug without side effect (ByteCode analyze tested on large projects)
Thanks !
Original issue reported on code.google.com by david.la...@gmail.com on 18 Oct 2012 at 6:53
Original issue reported on code.google.com by
david.la...@gmail.com
on 18 Oct 2012 at 6:53