From 5337e7a01c8d9b8e76eead3c4b1f46b6fe1dae3e Mon Sep 17 00:00:00 2001 From: chengzhihao Date: Mon, 9 Jun 2025 15:52:31 +0800 Subject: [PATCH] add namespace before Value Issue: https://gitee.com/openharmony/arkcompiler_runtime_core/issues/ICC6WD Signed-off-by: chengzhihao --- frameworks/ets/ets/@ohos.app.ability.Want.ets | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frameworks/ets/ets/@ohos.app.ability.Want.ets b/frameworks/ets/ets/@ohos.app.ability.Want.ets index cc53164fd24..527cf5a0d91 100644 --- a/frameworks/ets/ets/@ohos.app.ability.Want.ets +++ b/frameworks/ets/ets/@ohos.app.ability.Want.ets @@ -40,7 +40,7 @@ class RecordWriter { } else { const objType = Type.of(obj); if (objType instanceof ArrayType) { - this.writeBuildArray(obj as Object, Value.of(obj) as ArrayValue); + this.writeBuildArray(obj as Object, reflect.Value.of(obj) as ArrayValue); } else { this.buffer.append('null'); } -- Gitee