Signed-off-by: kirby <zhangruiming4@huawei.com>
This commit is contained in:
kirby
2026-02-09 15:13:50 +08:00
parent 900fe40bc6
commit 463ba62f2a
+15 -5
View File
@@ -113,7 +113,9 @@ func checkNull(data: String): Bool {
syscap: "SystemCapability.Test.UiTest"
]
public class Driver {
Driver(let ref: String) {
let ref: String
init(ref: String) {
this.ref = ref
checkRef(ref)
}
@@ -852,7 +854,9 @@ public class Driver {
syscap: "SystemCapability.Test.UiTest"
]
public class PointerMatrix {
PointerMatrix(protected let ref: String) {
protected let ref: String
init(ref: String) {
this.ref = ref
checkRef(ref)
}
@@ -906,7 +910,9 @@ public class PointerMatrix {
syscap: "SystemCapability.Test.UiTest"
]
public class UiWindow {
UiWindow(let ref: String) {
let ref: String
init(ref: String) {
this.ref = ref
checkRef(ref)
}
@@ -1523,7 +1529,9 @@ public enum OnceType {
syscap: "SystemCapability.Test.UiTest"
]
public class UiEventObserver {
UiEventObserver(let ref: String) {
let ref: String
init(ref: String) {
this.ref = ref
checkRef(ref)
}
@@ -1578,7 +1586,9 @@ public class UiEventObserver {
syscap: "SystemCapability.Test.UiTest"
]
public class Component {
Component(let ref: String) {
let ref: String
init(ref: String) {
this.ref = ref
checkRef(ref)
}