2424├── template.go # Template and generic type support
2525├── stmt.go # Statement generation
2626├── import.go # Import management
27- ├── type_* .go # Type system utilities
27+ ├── type_var_const .go # Variable and constant declarations
2828├── ast.go # AST node handling
2929├── packages/ # Package loading utilities
3030├── internal/ # Internal utilities and helpers
@@ -195,7 +195,7 @@ The project uses GitHub Actions:
195195 - ` package_test.go ` : Package-level features
196196 - ` typeparams_test.go ` : Generic types
197197 - ` error_msg_test.go ` : Error message formatting
198- - ` xgo_test.go ` : Extended Go+ features
198+ - ` xgo_test.go ` : Extended XGo features
199199- Always add tests for new features
200200- Ensure tests pass on all supported Go versions
201201
@@ -210,10 +210,10 @@ The project uses GitHub Actions:
210210
211211## Related Projects
212212
213- This project is part of the Go+ (goplus) ecosystem:
214- - Used by the Go+ compiler for code generation
215- - Integrates with the Go+ type system
216- - Supports Go+ language extensions
213+ This project is part of the XGo (goplus) ecosystem:
214+ - Used by the XGo compiler for code generation
215+ - Integrates with the XGo type system
216+ - Supports XGo language extensions
217217
218218## Useful Commands
219219
@@ -246,4 +246,4 @@ go vet ./...
246246- Check the tutorial examples in ` tutorial/ `
247247- Review test files for usage patterns
248248- Refer to Go's ` go/types ` package documentation
249- - Look at the Go+ project documentation at https://goplus.org
249+ - Look at the XGo project documentation at https://goplus.org
0 commit comments