|
@@ -22,8 +22,6 @@
|
|
|
|
|
|
package haxe.rtti;
|
|
package haxe.rtti;
|
|
|
|
|
|
-import haxe.ds.List;
|
|
|
|
-
|
|
|
|
/**
|
|
/**
|
|
The (dot-)path of the runtime type.
|
|
The (dot-)path of the runtime type.
|
|
**/
|
|
**/
|
|
@@ -108,12 +106,12 @@ typedef ClassField = {
|
|
var type:CType;
|
|
var type:CType;
|
|
|
|
|
|
/**
|
|
/**
|
|
- Whether or not the field is public.
|
|
|
|
|
|
+ Whether or not the field is `public`.
|
|
**/
|
|
**/
|
|
var isPublic:Bool;
|
|
var isPublic:Bool;
|
|
|
|
|
|
/**
|
|
/**
|
|
- Whether or not the field is final.
|
|
|
|
|
|
+ Whether or not the field is `final`.
|
|
**/
|
|
**/
|
|
var isFinal:Bool;
|
|
var isFinal:Bool;
|
|
|
|
|
|
@@ -130,13 +128,13 @@ typedef ClassField = {
|
|
var doc:Null<String>;
|
|
var doc:Null<String>;
|
|
|
|
|
|
/**
|
|
/**
|
|
- The [read access](https://haxe.org/manual/dictionary.html#define-read-access)
|
|
|
|
|
|
+ The [read access](https://haxe.org/manual/class-field-property.html#define-read-access)
|
|
behavior of the field.
|
|
behavior of the field.
|
|
**/
|
|
**/
|
|
var get:Rights;
|
|
var get:Rights;
|
|
|
|
|
|
/**
|
|
/**
|
|
- The [write access](https://haxe.org/manual/dictionary.html#define-write-access)
|
|
|
|
|
|
+ The [write access](https://haxe.org/manual/class-field-property.html#define-write-access)
|
|
behavior of the field.
|
|
behavior of the field.
|
|
**/
|
|
**/
|
|
var set:Rights;
|
|
var set:Rights;
|
|
@@ -211,7 +209,7 @@ typedef TypeInfos = {
|
|
var doc:Null<String>;
|
|
var doc:Null<String>;
|
|
|
|
|
|
/**
|
|
/**
|
|
- Whether or not the type is [private](https://haxe.org/manual/dictionary.html#define-private-type).
|
|
|
|
|
|
+ Whether or not the type is [`private`](https://haxe.org/manual/type-system-module-sub-types.html#define-private-type).
|
|
**/
|
|
**/
|
|
var isPrivate:Bool;
|
|
var isPrivate:Bool;
|
|
|
|
|
|
@@ -542,7 +540,7 @@ class TypeApi {
|
|
}
|
|
}
|
|
|
|
|
|
/**
|
|
/**
|
|
- The CTypeTools class contains some extra functionalities for handling
|
|
|
|
|
|
+ The `CTypeTools` class contains some extra functionalities for handling
|
|
`CType` instances.
|
|
`CType` instances.
|
|
**/
|
|
**/
|
|
class CTypeTools {
|
|
class CTypeTools {
|