Files
bun.sh/simple_xml_test.js
Claude Bot 03b2e48600 Initial XML parsing implementation
- Add XMLObject.zig API wrapper following YAML pattern
- Add xml.zig parser using Expr AST like YAML
- Add XML to BunObject hash table and exports
- Add XML to interchange.zig and api.zig

Currently debugging parsing issue where 'Expected <' error occurs
even with simple XML like '<a>b</a>'.

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-08-29 19:20:54 +00:00

8 lines
185 B
JavaScript

console.log("Simple XML test...");
try {
const result = Bun.XML.parse("<a>b</a>");
console.log("Result:", result);
} catch (e) {
console.log("Error message:", e.message);
}