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/pref/pref.v
+7-2Lines changed: 7 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -203,8 +203,9 @@ pub mut:
203
203
line_info string// `-line-info="file.v:28"`: for "mini VLS" (shows information about objects on provided line)
204
204
linfo LineInfo
205
205
206
-
run_only []string// VTEST_ONLY_FN and -run-only accept comma separated glob patterns.
207
-
exclude []string// glob patterns for excluding .v files from the list of .v files that otherwise would have been used for a compilation, example: `-exclude @vlib/math/*.c.v`
206
+
run_only []string// VTEST_ONLY_FN and -run-only accept comma separated glob patterns.
207
+
exclude []string// glob patterns for excluding .v files from the list of .v files that otherwise would have been used for a compilation, example: `-exclude @vlib/math/*.c.v`
208
+
file_list []string// A list of .v files or directories. All .v files found recursively in directories will be included in the compilation.
208
209
// Only test_ functions that match these patterns will be run. -run-only is valid only for _test.v files.
209
210
// -d vfmt and -d another=0 for `$if vfmt { will execute }` and `$if another ? { will NOT get here }`
0 commit comments