You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
More ToUpper-with-lowercase-cases bugs and hardcoded uppercase strings:
- Workflow properties: visitor hardcoded "DISPLAY", "EXPORT_LEVEL" etc. but
mutator case values were already lowercase. Normalized all property strings
(both hardcoded in visitor and remaining uppercase cases in mutator) to
lowercase. Updated tests accordingly.
- Settings executor: strings.ToUpper(stmt.Section) with lowercase case values.
Changed to ToLower; fixed "LANGUAGE" case and hardcoded "CONSTANT"/
"CONFIGURATION" in visitor. Fixed MDL example (alter settings LANGUAGE).
- Entity event handlers: describe output used ToUpper for moment/event name.
Changed to ToLower so output is "on before commit" not "on BEFORE COMMIT".
- REST client: method stored as BSON title case ("Get"), describe output needs
strings.ToLower to produce "get" not "Get".
- Design properties: ON/OFF toggle values hardcoded as "ON"/"OFF" in visitor
but switch used ToUpper with lowercase "on"/"off" cases. Fixed visitor to
produce lowercase and switch to use ToLower.
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
0 commit comments