aboutsummaryrefslogtreecommitdiffstats
path: root/asspb.go
AgeCommit message (Collapse)AuthorFilesLines
2025-10-27Use struct reflection instead of relying on JSONRose Hogenson1-87/+127
This breaks backwards compatibility completely, of course. I wanted to rename the package anyway.
2025-10-26Numbers must be separated from field namesRose Hogenson1-0/+8
Another technically backwards-incompatible change, but it's important to avoid weird edge cases in lexing.
2025-10-26Separate the lexerRose Hogenson1-117/+120
2025-10-26Improve error messagesRose Hogenson1-13/+35
2025-10-26Strings must be valid UTF-8Rose Hogenson1-15/+33
2025-10-26Refine numeric literal syntaxRose Hogenson1-6/+9
Leading zeros are no longer permitted in decimal literals, which is technically a backwards-incompatible change, but I consider it to be something like a bug fix. Anyway, the project is unlikely to have any users that would be impacted.
2025-10-25Make sure to remove \r\n as well as \n for WindowsRose Hogenson1-2/+4
2025-10-25Improve test coverageRose Hogenson1-1/+1
2025-10-25Some small improvementsRose Hogenson1-34/+64
2025-10-25Add documentationRose Hogenson1-3/+122
2025-10-25Add support for C-style commentsRose Hogenson1-1/+1
2025-10-25Remove some accidental debugging linesRose Hogenson1-2/+0
2025-10-25Initial commitRose Hogenson1-0/+311