可用的回归测试通过的标准版本

This commit is contained in:
2026-06-18 00:39:43 +08:00
parent bffb0cb6b7
commit e02c867edf
365 changed files with 22562 additions and 24532 deletions

View File

@@ -56,8 +56,12 @@ def _build_type_maps():
if _cname and _obj.IsBasicType():
_BASIC_TYPES_MAP[_cname] = _cname
_T_TYPE_PATTERNS.append((_name, _cname))
except Exception:
pass
except Exception as _e:
from lib.core.VLogger import get_logger as _vlog
from lib.constants.config import mode as _ConfigMode
if _ConfigMode == "strict":
raise
_vlog().warning(f"构建类型映射时实例化 CType 子类失败: {_e}", "Exception")
# =============================================================================