Antlr4Ast 1.0.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package Antlr4Ast --version 1.0.0
NuGet\Install-Package Antlr4Ast -Version 1.0.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Antlr4Ast" Version="1.0.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Antlr4Ast --version 1.0.0
#r "nuget: Antlr4Ast, 1.0.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Antlr4Ast as a Cake Addin
#addin nuget:?package=Antlr4Ast&version=1.0.0

// Install Antlr4Ast as a Cake Tool
#tool nuget:?package=Antlr4Ast&version=1.0.0

Antlr4Ast Build Status Coverage Status NuGet

<img align="right" width="160px" height="160px" src="img/antlr4ast.png">

Antlr4Ast is a .NET library that provides a parser and abstract syntax tree (AST) for ANTLR4/g4 files.

This can be useful if you are looking for building code generation tools from ANTLR4/g4 files.

Features

  • Allow to parse and merge ANTLR4/g4 files to a simple AST.
    • Should support almost all grammar features of ANTLR4/g4 except actions.
  • Provides precise source location for most of the AST elements.
  • Provides access to comments attached to syntax nodes.
  • Library with nullable annotations.
  • Compatible with .NET6+

Limitations

As this library is mainly for codegen scenarios, it does not preserve whitespaces or the position of some comments within elements. There is no plan to support high fidelity roundtrip ANTLR4 parser.

Usage

The entry point for parsing an ANTLR4/g4 grammar is to use the Antlr4Parser.Parse methods:

var input = @"grammar MyGrammar;
// Parser rules starting here!
expr_a_plus_b
    : TOKEN_A '+' TOKEN_B
    ;
// Lexer rules starting here!
TOKEN_A: 'a';
TOKEN_B: 'b';
";
// Parse the grammar
var grammar = Antlr4Parser.Parse(input);
// Print the grammar
Console.WriteLine(
    grammar.ToString(
        new AntlrFormattingOptions() { 
                    MultiLineWithComments = true 
        }
    )
);

will print the following:

grammar MyGrammar;

// Parser rules starting here!
expr_a_plus_b
  : TOKEN_A '+' TOKEN_B
  ;

// Lexer rules starting here!
TOKEN_A
  : 'a'
  ;

TOKEN_B
  : 'b'
  ;

Documentation

You will find more details about how to use Antlr4Ast in this user guide.

License

This software is released under the BSD-Clause 2 license.

Author

Alexandre Mutel aka xoofx.

Product Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
3.0.0 210 12/9/2023
2.0.0 436 10/11/2022
1.0.0 377 10/9/2022