add: Array declaration and variable indexer.

This commit is contained in:
2024-08-17 17:50:28 +08:00
parent c7077bd0fd
commit 97f9fb9ec3
12 changed files with 200 additions and 30 deletions

View File

@@ -107,6 +107,7 @@ public class LexicalTokenParserTest : LexicalTestBase
[Theory]
[InlineData(123, "123")]
[InlineData(0, "0")]
[InlineData(10, "10..20")]
public void ConstIntegerTest(int value, string input)
{
StringReadState state = new(input);