We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
find . -name "*.v" | xargs v run cmd/tools/measure/parser_speed.v
1 parent 2fec2fa commit eef77e3Copy full SHA for eef77e3
cmd/tools/measure/parser_speed.v
@@ -18,7 +18,6 @@ fn main() {
18
}
19
20
fn process_files(files []string) ! {
21
- mut table := ast.new_table()
22
mut pref_ := pref.new_preferences()
23
pref_.is_fmt = true
24
pref_.skip_warnings = true
@@ -28,6 +27,7 @@ fn process_files(files []string) ! {
28
27
mut total_bytes := i64(0)
29
mut total_tokens := i64(0)
30
for f in files {
+ mut table := ast.new_table()
31
if f == '' {
32
continue
33
0 commit comments