Updated Go version

This commit is contained in:
2025-02-14 16:46:36 +01:00
parent d589b02570
commit 88b3f468d1
9 changed files with 10 additions and 10 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 range b.N {
for b.Loop() {
expression.Parse(tokens)
}
}