Simplified file structure

This commit is contained in:
2024-08-07 19:39:10 +02:00
parent 1b13539b22
commit 66569446b1
219 changed files with 453 additions and 457 deletions

26
src/token/bench_test.go Normal file
View File

@ -0,0 +1,26 @@
package token_test
import (
"bytes"
"testing"
"git.akyoto.dev/cli/q/src/token"
)
func BenchmarkLines(b *testing.B) {
b.Run("__1", bench(1))
b.Run("_10", bench(10))
b.Run("100", bench(100))
}
func bench(n int) func(b *testing.B) {
line := []byte("hello := 123\n")
return func(b *testing.B) {
input := bytes.Repeat(line, n)
for i := 0; i < b.N; i++ {
token.Tokenize(input)
}
}
}