You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: vlib/v/ast/table.v
+2Lines changed: 2 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -99,6 +99,8 @@ pub mut:
99
99
anon_union_names map[string]int// anon union name -> union sym idx
100
100
anon_union_counter int
101
101
comptime_is_true map[string]ComptTimeCondResult // The evaluate cond results for different generic types combination, such as `comptime_is_true['T=int,X=string|main.v|pos ...'] = {true, '!DEFINED(WINDOWS)'}`
102
+
new_int bool// use 64bit/32bit platform dependent `int`
103
+
new_int_fmt_fix bool// vfmt will fix `int` to `i32`
0 commit comments