fix(json): normalize dkjson decode error behavior to match cjson #13
Labels
No labels
coordination/cross-repo
coordination/needed
effort
large
effort
medium
effort
small
meta/duplicate
meta/planning
meta/wontfix
priority
high
priority
low
priority
medium
session
blocker
session
handover
session
next
status
blocked
status
done
status
in-progress
status
review
status
to-go
type
admin
type
bug
type
config
type
deployment
type
docs
type
enhancement
type
feature
type
handover
type
infrastructure
type
installation
type
maintenance
type
migration
type
research
type
security
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
DAW/daw-lua-common#13
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Problem
json.decodebehavior depends on the active backend:nil, pos, errwithout throwing (pcall sees ok=true, result=nil)This means callers using
pcall(json.decode, str)get silent nil with dkjsoninstead of a caught error. Exposed by daw-modul-api test_api.lua test 8.
Fix
Wrap dkjson.decode to normalize behavior: throw an error when result is nil
and err is set -- identical to cjson and pure-lua behavior.
Acceptance Criteria
json.decodealways throws on invalid input regardless of backend