Improved code style

This commit is contained in:
2025-01-30 22:23:38 +01:00
parent 162824ec1c
commit 313302b9c8
12 changed files with 17 additions and 22 deletions

View File

@ -11,7 +11,7 @@ func BenchmarkExpression(b *testing.B) {
src := []byte("(1+2-3*4)+(5*6-7+8)")
tokens := token.Tokenize(src)
for i := 0; i < b.N; i++ {
for range b.N {
expression.Parse(tokens)
}
}