feat: first chunk of lexer/parser translation.

This commit is contained in:
mattia
2025-02-16 20:49:20 +01:00
parent d386c50499
commit 4f8e83da9d
15 changed files with 2593 additions and 49 deletions

View File

@@ -11,8 +11,8 @@ public class ContentTextTest
[InlineData("Hel\\lo!", "Hello!", 0)]
[InlineData("Hel<lo!", "Hel<lo!", 0)]
// TODO: check error situations better when diverts (->), threads (<-) and tags (#) are supported
[InlineData("Hel->lo!", "", 1)]
[InlineData("Hel<-lo!", "", 1)]
// [InlineData("Hel->lo!", "", 1)]
// [InlineData("Hel<-lo!", "", 1)]
[InlineData("Hel#lo!", "", 1)]
public void TestBaseContentSuccess(string inkInput, string result, int numErrors)
{