Speed up lexing

This commit is contained in:
Ian Ker-Seymer
2024-10-22 20:44:35 -04:00
parent b233b3d081
commit 61a13d8e5b
9 changed files with 203 additions and 78 deletions
+8
View File
@@ -81,6 +81,14 @@ namespace :benchmark do
task :strict do
ruby "./performance/benchmark.rb strict"
end
desc "Run unit benchmarks"
task :unit do
Dir["./performance/unit/*_benchmark.rb"].each do |file|
puts "🧪 Running #{file}"
ruby file
end
end
end
namespace :profile do