feat(tsl-api-reference): index class and unit APIs

Migrate reference pages to declaration-line storage and rebuild the
13-column index.

Add qualified member lookup plus regression and end-to-end coverage.
This commit is contained in:
csh
2026-07-29 15:47:46 +08:00
parent 9edc8fc868
commit 13be5ea0aa
239 changed files with 39157 additions and 12846 deletions
@@ -4,6 +4,8 @@
## `DeleteInstance(obj)`
声明:function
删除由MakeInstance生成的函数指针。
旧定义:`Function DeleteInstance(obj:pointer):Boolean`
@@ -20,6 +22,8 @@ Source ID36285
## `ListGlobalCacheRemoved()`
声明:function
列出被重置或者过期的全局缓存信息, 需要高级权限HighLevel 2或者系统权限。
旧定义:`ListGlobalCacheRemoved():Array;`
@@ -32,6 +36,8 @@ Source ID31529
## `ListGlobalCache()`
声明:function
列出现存的全局缓存信息, 需要高级权限HighLevel 2或者系统权限。
旧定义:`ListGlobalCache():Array;`
@@ -44,6 +50,8 @@ Source ID31528
## `GetGlobalCacheInfo(value)`
声明:function
获得全局缓存的信息。
旧定义:`GetGlobalCacheInfo(Value:Obj):Array;`
@@ -60,6 +68,8 @@ Source ID31527
## `RDo()`
声明:function
调用本地函数,不等待返回结果而继续执行。 如果本地的函数需要系统参数,则用With带系统参数,例如With Array("abcd":123,"bcd":234); 与RDo2相比,RDo只提交任务而不等待函数的执行的返回。
旧定义:`RDo LocalFunctionName(P1;P2;…) [With SysParams];`