Hello Clement
and OSFlashers,
I'm using
SexieR in an Ant build task and trying to built intrinsic classes for my project
with dependencies..
It works fine
unless analysed dependency classes use more lines for class or function
declarations.
For example
class is not parsed correctly for syntax like this:
class
de.alex_uhlmann.animationpackage.animation.MoveOnQuadCurve
extends AnimationCore
implements ISingleAnimatable {
extends AnimationCore
implements ISingleAnimatable {
private function initAnimation(x1:Number,
y1:Number,
x2:Number,
y2:Number, x3:Number, y3:Number, withControlpoints:Object,
duration:Object, easing:Object, callback:String):Void {
y2:Number, x3:Number, y3:Number, withControlpoints:Object,
duration:Object, easing:Object, callback:String):Void {
...
}
Generated intrinsic
class then looks like this:
intrinsic class
de.alex_uhlmann.animationpackage.animation.MoveOnQuadCurve
{
private function initAnimation(x1:Number, y1:Number, x2:Number,
;
...
}
...
}
and this generates
compile errors..
Tomas Lehuta [http://lharp.net
]_______________________________________________ osflash mailing list [email protected] http://osflash.org/mailman/listinfo/osflash_osflash.org
