Added tokenizer benchmark

This commit is contained in:
2024-06-26 18:49:03 +02:00
parent 49b75dbda4
commit 3268f7a7ee
3 changed files with 57 additions and 1 deletions

View File

@ -0,0 +1,15 @@
package token_test
import (
"testing"
"git.akyoto.dev/cli/q/src/build/token"
)
func BenchmarkTokenize(b *testing.B) {
input := []byte("hello := 123\nworld := 456")
for i := 0; i < b.N; i++ {
token.Tokenize(input)
}
}