Add yaml.dump() serializer #5
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#5
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?
Summary
yaml.luahasload()andload_file()but no serialization.steurjan needs to write
transaction_context/v2anddecision_snapshot/v2as YAML files to the journal. Without
dump(), every project that writesYAML would need its own serializer.
Scope
Add
yaml.dump(table)tosrc/daw/lua/common/yaml.lua.Requirements
load()):,#, leading spaces) must be quotedOut of scope
|,>)Interface
Tests
Extend
test/test_yaml.lua:dump(load(fixture))produces equivalent structureRefs
Implemented in yaml/dump.lua (pure-Lua tier) and wired into yaml/init.lua's Tier-1 lyaml.dump() path. Alphabetical key order, 2-space indent, string quoting for special chars, round-trip verified (dump(load(x)) equivalent structure).