ganado / redtamarin

Automatically exported from code.google.com/p/redtamarin
Other
2 stars 0 forks source link

implement basic reflection utils #1

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
Tamarin is cruely lacking any reflection access

we need at least the 3 function from flash.utils.*

public function getDefinitionByName(name:String):Object
can be implemented using the Domain class

public function getQualifiedClassName(value:*):String
and
public function getQualifiedSuperclassName(value:*):String

have to be implemented

ideally we would want also to provide
public function describeType(value:*):XML

Original issue reported on code.google.com by zwetan on 25 Nov 2008 at 9:29

GoogleCodeExporter commented 9 years ago
getQualifiedClassName() and getQualifiedSuperclassName()
implemented and working the same as in Flash

Original comment by zwetan on 2 Dec 2008 at 1:55