|
@@ -182,11 +182,12 @@ extern class Type {
|
|
|
public static function createEnumIndex<T>( e : Enum<T>, index : Int, ?params : Array<Dynamic> ) : T;
|
|
|
|
|
|
/**
|
|
|
- Returns a list of the instance fields of class `c`.
|
|
|
+ Returns a list of the instance fields of class `c`, including
|
|
|
+ inherited fields.
|
|
|
|
|
|
This only includes fields which are known at compile-time. In
|
|
|
- particular, using getInstanceFields(getClass(obj)) will not include
|
|
|
- any fields which were added to obj at runtime.
|
|
|
+ particular, using `getInstanceFields(getClass(obj))` will not include
|
|
|
+ any fields which were added to `obj` at runtime.
|
|
|
|
|
|
The order of the fields in the returned Array is unspecified.
|
|
|
|