Modify canonical what Java Primitive Type means and add some type in VariableTypeFactory

This commit is contained in:
2022-11-27 04:19:13 +08:00
parent f435c7b93f
commit 20b0ed29ab
11 changed files with 469 additions and 197 deletions

View File

@@ -598,7 +598,7 @@ The `Class` instance subscripted by the `index` number of `param` was not found
method {
name = "test"
// Assume that the Class with subscript "No.1" set here does not exist
param(StringType, "com.example.TestClass", BooleanType)
param(StringClass, "com.example.TestClass", BooleanType)
}
```
@@ -867,7 +867,7 @@ PackageParam::class.java.hook {
// <Scenario 3>
MethodFinder::class.java.method {
name = "name"
param(StringType)
param(StringClass)
}.get().call("name")
// ...
```