tree-sitter-visitor VS alumina

Compare tree-sitter-visitor vs alumina and see what are their differences.

tree-sitter-visitor

Procedural macro for generating a visitor trait for Tree Sitter Rust bindings (by tibordp)
Our great sponsors
  • WorkOS - The modern identity platform for B2B SaaS
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • SaaSHub - Software Alternatives and Reviews
tree-sitter-visitor alumina
1 10
1 153
- 3.3%
10.0 4.6
over 2 years ago about 2 months ago
C Rust
MIT License MIT License
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

tree-sitter-visitor

Posts with mentions or reviews of tree-sitter-visitor. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2022-09-03.
  • Show HN: Alumina Programming Language
    4 projects | news.ycombinator.com | 3 Sep 2022
    Honestly, Tree Sitter is fantastic, I can highly recommend it. By far the most user friendly and powerful parser generator I've worked with. The C API is very nice.

    The only two pain point I had is that the `node-types.json` that's generated only contains the names of the nodes, not the numerical IDs. This means that if you have some codegen generating Rust enums is difficult if you want to avoid matching nodes by string.

    I wrote https://github.com/tibordp/tree-sitter-visitor for generating visitor traits in Rust for a given grammar. I actually did it a bit differently in the end for Alumina, but it might come useful.

alumina

Posts with mentions or reviews of alumina. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-06-30.
  • Ask HN: LLVM vs. C
    2 projects | news.ycombinator.com | 30 Jun 2023
    You can go surprisingly far with C, though LLVM is probably a better long-term option for a serious compiler, because it's a tool made for the job (unless you target exotic and/or embedded platforms that don't have LLVM support - but that's fairly unlikely).

    C is very easy to get started with if you don't already know LLVM. The downside is that once your compiler is reasonably complete, you may spend quite a bit of time working around quirks of C (e.g. int promotion is very annoying when you already have full type information, so your compiler either has to understand C semantics fairly well or defensively cast every subexpression).

    I have a C backend in my compiler (https://github.com/alumina-lang/alumina) and it works really well, though the generated C is really ugly and assembly-like. With #line directives, you can also get source-level debugging (gdb/lldb) that just works out of the box.

    There are a few goodies that LLVM gives you that you don't get with C, like coverage (https://clang.llvm.org/docs/SourceBasedCodeCoverage.html). It works when done through clang, but easily be made to track the original sources.

  • Alumina Programming Language
    1 project | news.ycombinator.com | 5 Sep 2022
  • Show HN: Alumina Programming Language
    1 project | /r/patient_hackernews | 3 Sep 2022
    1 project | /r/hackernews | 3 Sep 2022
    1 project | /r/hypeurls | 3 Sep 2022
    4 projects | news.ycombinator.com | 3 Sep 2022
    Totally agreed about FFI. I wanted to make it easy to interop with C code and write expressive bindings.

    Check for example the language bindings to LLVM's C API (fairly low level) and Tree-Sitter which is used internally (a bit higher level bindings)

    https://github.com/tibordp/alumina/tree/master/libraries/llv...

    https://github.com/tibordp/alumina/blob/master/libraries/tre...

  • Alumina programming language
    3 projects | /r/ProgrammingLanguages | 3 Sep 2022
    However, I am not super happy with the current structure of the compiler and for the self-hosted one I'd like to fix those mistakes. For example, mono.rs is a giant module that does everything from mixin expansion, lowering from AST to IR, type checking and monomorphization. There are some bugs in Alumina that are quite hard to fix without a big refactoring (e.g. if a nested function binds generic parameters of the parent) and I'd like to get it right the next time around.

What are some alternatives?

When comparing tree-sitter-visitor and alumina you can also consider the following projects:

bitloops-language - Open-source transpiled programming language that helps you write clean code, well-designed systems, and build high-quality software that is testable, auditable and maintainable. Like what you see? Don't forget to star! :star: ^^^

llvm-cbe - resurrected LLVM "C Backend", with improvements