Added a new V2 AST module, with basic AST constructs#1492
Closed
Added a new V2 AST module, with basic AST constructs#1492
Conversation
|
Contributor
Author
|
I'll leave it as a draft for now, was thinking about it over the weekend and want to improve the API a bit, but open to people's early suggestions |
Contributor
Author
|
Closing in favour of #1493 |
github-merge-queue bot
pushed a commit
that referenced
this pull request
Feb 4, 2026
This PR adds a new AST for V2 slang, it's still under active development so it will change. There's a few things that will most likely change soon: - All Non terminals keep access to all their children, including terminals that carry no information (like a `;`) - The AST is dependent on an arena, currently using `bumpalo`, this should probably be abstracted away, and each constructor take a more complex type having an arena, the source, a string interner, etc - I haven't focused much on the public API for now, eventually we'll need to do this. Overhauling #1492
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.
This PR adds a new AST for V2 slang, it's still under active development so it may change.
There's a few things that will most likely change:
TerminalTypeand differentiated via aLexemeKind, this won't be the case for long;)