Commit 4dd74a4e authored by Yuan Zhixiang's avatar Yuan Zhixiang
Browse files

修复多维数组前缀@

parent b3f63f43
......@@ -47,7 +47,7 @@ const display_name = computed(() => { // 最终显示的变量名称
}
const spaceIndex = var_name.value.indexOf(' '); // 认为仅有'var (static xxx)'的额外情况
if (spaceIndex == -1) {
if (is_array.value) {
if (is_array.value || is_multi_array.value) {
return '@' + var_name.value
}
if (is_struct.value) {
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment