AnnulusGames / Lua-CSharp

High performance Lua interpreter implemented in C# for .NET and Unity
MIT License
184 stars 8 forks source link

Implement pattern matching #31

Open AnnulusGames opened 1 month ago

AnnulusGames commented 1 month ago

The current pattern matching is simplified using Regex, which will be replaced with a scratch pattern matching implementation.

This will reduce the overhead of conversion to Regex and is expected to provide higher performance.