Merge new documentation

This commit is contained in:
2022-04-09 01:37:12 +08:00
parent c3fbaf553f
commit a455eec5de
52 changed files with 8270 additions and 104 deletions

View File

@@ -0,0 +1,41 @@
## CurrentClass [class]
```kotlin
class CurrentClass(private val instance: Class<*>, private val self: Any)
```
<b>变更记录</b>
`v1.0.70` `新增`
<b>功能描述</b>
> 当前实例的类操作对象。
### field [method]
```kotlin
fun field(initiate: FieldFinder.() -> Unit): FieldFinder.Result.Instance
```
<b>变更记录</b>
`v1.0.70` `新增`
<b>功能描述</b>
> 调用当前实例中的变量。
### method [method]
```kotlin
fun method(initiate: MethodFinder.() -> Unit): MethodFinder.Result.Instance
```
<b>变更记录</b>
`v1.0.70` `新增`
<b>功能描述</b>
> 调用当前实例中的方法。