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
{{ message }}
This repository was archived by the owner on Mar 24, 2025. It is now read-only.
Implement a parser that can read S-expression AST files and rebuild the original text. This is the reverse operation of the extract-tokens.scm script and would allow for:
Round-trip verification of the AST format
Reconstruction of text from modified ASTs
AST-based text generation or transformation pipelines
The parser should:
Handle all node types in the schema
Properly process metadata attributes
Maintain whitespace and formatting based on the AST structure
Support both full document and partial AST fragment reconstruction
This would complement the existing token extraction functionality and provide a complete bidirectional toolchain.
Implement a parser that can read S-expression AST files and rebuild the original text. This is the reverse operation of the extract-tokens.scm script and would allow for:
The parser should:
This would complement the existing token extraction functionality and provide a complete bidirectional toolchain.