Antlr4Ast 3.0.0
dotnet add package Antlr4Ast --version 3.0.0
NuGet\Install-Package Antlr4Ast -Version 3.0.0
<PackageReference Include="Antlr4Ast" Version="3.0.0" />
paket add Antlr4Ast --version 3.0.0
#r "nuget: Antlr4Ast, 3.0.0"
// Install Antlr4Ast as a Cake Addin #addin nuget:?package=Antlr4Ast&version=3.0.0 // Install Antlr4Ast as a Cake Tool #tool nuget:?package=Antlr4Ast&version=3.0.0
Antlr4Ast
<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.
- Provides visitor and transform.
- Library with nullable annotations.
- Compatible with
netstandard2.0
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 Grammar.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 = Grammar.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 | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. 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. |
.NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
.NET Framework | net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETStandard 2.0
- Antlr4.Runtime.Standard (>= 4.13.1)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.