class Reflect
no package
The Reflect API is a way to manipulate values dynamically through an abstract interface in an untyped manner. Use with care.
See also:
Static methods
staticfield(o:Dynamic, field:String):Dynamic
Returns the value of the field named field
on object o
.
If o
is not an object or has no field named field
, the result is
null.
If the field is defined as a property, its accessors are ignored. Refer
to Reflect.getProperty
for a function supporting property accessors.
If field
is null, the result is unspecified.
(As3) If used on a property field, the getter will be invoked. It is not possible to obtain the value directly.
staticisFunction(f:Dynamic):Bool
Returns true if f
is a function, false otherwise.
If f
is null, the result is false.