Hi Frédéric,
At first I would like to say thank you for the greate stuff you provided!
Unfortunately, I have an issue I can't resolve. I'm using the GraniteDS calsses inside worker. Everything works well except one thing. When I try to create org.granite.math.BigDecimal I get this error
[Fault] exception, information=ReferenceError: Error #1065: Variable org.granite.math::assert is not defined.
Due to the code of BigDecimal references to plain function org.granite.math::assert that is somehow not seen. I can't pass this name as extraDeps due to assert has Function type and not Class and defined like this.
package org.granite.math {
function assert(value:Boolean, message:String = null):void {
//...
}
}
Is it possible to somehow make it work?
Thanx in advance.