Messerli.Lexer
1.0.2
Prefix Reserved
Funcky.Lexer replaces all versions of apophis.Lexer and Messerli.Lexer
See the version list below for details.
dotnet add package Messerli.Lexer --version 1.0.2
NuGet\Install-Package Messerli.Lexer -Version 1.0.2
<PackageReference Include="Messerli.Lexer" Version="1.0.2" />
<PackageVersion Include="Messerli.Lexer" Version="1.0.2" />
<PackageReference Include="Messerli.Lexer" />
paket add Messerli.Lexer --version 1.0.2
#r "nuget: Messerli.Lexer, 1.0.2"
#:package Messerli.Lexer@1.0.2
#addin nuget:?package=Messerli.Lexer&version=1.0.2
#tool nuget:?package=Messerli.Lexer&version=1.0.2
Messerli.Lexer
A simple lexer which gives you a stream of Tokens from a string and some simple to define rules.
Getting started
You have to define at least an EpsilonToken (you can name it differently, or use a class) which signals the end of the input.
public sealed record EpsilonToken : IToken;
Then you define the other token you want to use:
internal sealed record PlusToken(string Number): IToken;
internal sealed record MinusToken(string Number): IToken;
internal sealed record NumberToken(string Number): IToken;
Now you need some rules, the TokenWalker expects an IEnumerable<ILexerRule>.
internal static class ExampleRules
{
public static IEnumerable<ILexerRule> GetRules()
{
yield return new SimpleLexerRule<PlusToken>("+");
yield return new SimpleLexerRule<MinusToken>("-");
yield return new LexerRule(char.Digit, ScanNumber);
}
private static Lexeme ScanIdentifier(ILexerReader reader)
{
var startPosition = reader.Position;
var stringBuilder = new StringBuilder();
while (reader.Peek().Match(none: false, some: char.IsDigit))
{
stringBuilder.Append(reader.Read().Match(none: ' ', some: Identity));
}
return new Lexeme(new IdentifierToken(stringBuilder.ToString()), new Position(startPosition, reader.Position - startPosition));
}
}
We see some simple rules which just need the string, you can also define overlapping simple rules like "=" and "==" the longer strings take precedent.
We see also how you scan a more complex Lexeme, where you see how you should create a Lexeme out of your Tokens and you see how to handle the position information for the Lexem.
TokenWalker.Create<EpsilonToken>(SimpleRules.GetRules())
Line-handling
If you have an expression which goes over multiple lines, you usually want the position as Line number + character on that line. The default setting already handles everything as long as you declare the token which denotes a new-line with the interface ILineBreakToken.
internal sealed record NewLine(): IToken, ILineBreakToken;
Special Tasks
Overriding Line calculation
You have to instantiate the TokeWalker yourself with your own instance of ILineCalculator.
I need to do something different depending on a Lexem already parsed.
LexerRuleWithContext gives you access to all Lexems already produced.
Before you use it, think hard if you could solve it differently, maybe in the parsing phase instead of in the lexer.
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net5.0 was computed. net5.0-windows was computed. 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. net9.0 was computed. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 was computed. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.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. |
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.