Remove abandoned javatools_backend and Makefile#389
Merged
Conversation
The javatools_backend was an abandoned experiment to compile XTC into Java source. It had no dependencies from the rest of the project and contained no reusable assets. The Makefile was a parallel build system to Gradle used primarily for the backend workflow, with no remaining unique functionality.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
javatools_backend/directory — an on-hold project to compile XTC into Java source codeMakefile— a parallel build system to Gradle that existed primarily to support the backend workflow and had no remaining unique functionalityMotivation
We want to keep the XVM reference implementation repo as clean and focused as possible. The
javatools_backendwas not integrated into the Gradle build, had no dependencies from anywhere else in the project, and contained no reusable assets (no.xfiles, no code imported by other modules). TheMakefileduplicated what Gradle already handles and was primarily the entry point for the backend experiment.Removing dead code reduces cognitive overhead for contributors and keeps the repo focused on its core purpose: the XVM reference implementation.
Nothing is lost
This code remains fully available in Git history. To browse, search, or restore it at any time:
You can also browse it on GitHub by navigating to any commit prior to this merge.
Future direction
As the XVM project matures past the alpha phase, other components that are not directly part of the XVM itself may be decoupled and migrated to their own repositories. For example, the
lang/tree (which implements language support bindings — tree-sitter grammars, LSP server, VS Code extension, IntelliJ plugin, Emacs mode) is a natural candidate for its own repo. For now, it remains tightly coupled to the rest of the build to ensure full integration and enable rapid development during the alpha.Test plan
javatools_backend/reference it.gitignorehas no entries specific to the backendjavatools_backendin the repo