fix(boards): 修复xpython下变量名大小写不敏感

This commit is contained in:
王立帮
2025-10-19 19:16:12 +08:00
parent d105bf68ec
commit 6b1bd254f5
3 changed files with 3 additions and 9 deletions

View File

@@ -117,7 +117,7 @@ class Names {
name = varName;
}
}
var normalized = name.toLowerCase() + '_' + type;
var normalized = name + '_' + type;
var isVarType = type == Variables.NAME_TYPE ||
type == Names.DEVELOPER_VARIABLE_TYPE;