Modify move NameConditions, ModifierRules to finder/base/rules and renamed and replace them with a new method of use

This commit is contained in:
2022-09-15 02:21:08 +08:00
parent f48b5b71a7
commit a9e5c0780f
24 changed files with 600 additions and 1289 deletions

View File

@@ -43,7 +43,7 @@ var paramCount: Int
### modifiers *- method*
```kotlin
inline fun modifiers(initiate: ModifierRules.() -> Unit): IndexTypeCondition
fun modifiers(conditions: ModifierConditions): IndexTypeCondition
```
**变更记录**
@@ -54,6 +54,10 @@ inline fun modifiers(initiate: ModifierRules.() -> Unit): IndexTypeCondition
将方法体进行 inline
`v1.0.93` `修改`
合并到 `ModifierConditions`
**功能描述**
> 设置 `Constructor` 标识符筛选条件。
@@ -141,7 +145,7 @@ fun paramCount(numRange: IntRange): IndexTypeCondition
### paramCount *- method*
```kotlin
fun paramCount(conditions: IntConditions): IndexTypeCondition
fun paramCount(conditions: CountConditions): IndexTypeCondition
```
**变更记录**